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

:root {
  --amarelo: #FDA808;
  --amarelo-dark: #E09500;
  --amarelo-light: rgba(253,168,8,0.12);
  --marrom: #8F4623;
  --verde: #2F8B57;
  --verde-light: rgba(47,139,87,0.12);
  --bg: #FFF9F0;
  --bg-alt: #F7F1EA;
  --text: #3A2A20;
  --text-sec: #6B5A4F;
  --white: #FFFFFF;
  --shadow: 0 4px 28px rgba(58,42,32,0.08);
  --shadow-md: 0 8px 40px rgba(58,42,32,0.13);
  --r: 24px;
  --r-sm: 14px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; font-size: 16px; color: var(--text); background: var(--bg); line-height: 1.65; overflow-x: hidden; }
h1, h2, h3, h4, h5 { font-family: 'Sora', sans-serif; font-weight: 700; line-height: 1.2; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ── BOTÕES ──────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 50px;
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 15px;
  cursor: pointer; border: none; transition: all .25s ease; white-space: nowrap;
}
.btn-amarelo { background: var(--amarelo); color: var(--text); }
.btn-amarelo:hover { background: var(--amarelo-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(253,168,8,0.4); }
.btn-verde { background: var(--verde); color: var(--white); }
.btn-verde:hover { background: #247a4a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(47,139,87,0.35); }
.btn-outline { background: transparent; color: var(--marrom); border: 2px solid var(--marrom); }
.btn-outline:hover { background: var(--marrom); color: var(--white); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--text); }
.btn-white:hover { background: var(--amarelo); transform: translateY(-2px); }

/* ── HEADER ──────────────────────────────────── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,249,240,0.94); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(143,70,35,0.07); transition: box-shadow .3s;
}
header.scrolled { box-shadow: 0 2px 24px rgba(58,42,32,0.1); }
nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 80px; width: auto; }
.logo-text { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 16px; color: var(--marrom); line-height: 1.2; }
.logo-sub { font-size: 11px; font-weight: 500; color: var(--text-sec); display: block; }
.logo-box { width: 42px; height: 42px; background: linear-gradient(135deg, var(--amarelo), var(--marrom)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800; color: white; font-family: 'Sora', sans-serif; }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text-sec); transition: color .2s; }
.nav-links a:hover { color: var(--marrom); }
.nav-cta .btn { padding: 11px 22px; font-size: 14px; }

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

.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--bg); padding: 20px 24px; z-index: 199; box-shadow: 0 8px 32px rgba(58,42,32,0.12); }
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li a { display: block; padding: 14px 0; font-size: 16px; font-weight: 500; color: var(--text); border-bottom: 1px solid rgba(143,70,35,0.08); }
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 18px; }

/* ── HERO ────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding-top: 72px; overflow: hidden;
  background: linear-gradient(160deg, #FFF9F0 0%, #FDF4E0 50%, #F7EDD5 100%);
}

.hero-blob { position: absolute; z-index: 0; }
.hero-blob-1 {
  top: -80px; right: -80px; width: 420px; height: 420px;
  background: radial-gradient(ellipse, rgba(253,168,8,0.22) 0%, transparent 70%);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  animation: blobFloat 8s ease-in-out infinite;
}
.hero-blob-2 {
  bottom: -60px; left: -60px; width: 360px; height: 360px;
  background: radial-gradient(ellipse, rgba(47,139,87,0.15) 0%, transparent 70%);
  border-radius: 40% 60% 30% 70% / 60% 40% 50% 50%;
  animation: blobFloat 10s ease-in-out infinite reverse;
}
.hero-blob-3 {
  top: 30%; left: 30%; width: 200px; height: 200px;
  background: radial-gradient(ellipse, rgba(253,168,8,0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: blobFloat 12s ease-in-out infinite;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(12px,-16px) scale(1.04); }
  66% { transform: translate(-8px,10px) scale(0.97); }
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; padding: 80px 0; width: 100%;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(47,139,87,0.12); border: 1.5px solid rgba(47,139,87,0.25);
  color: var(--verde); padding: 7px 16px; border-radius: 50px;
  font-size: 12.5px; font-weight: 600; margin-bottom: 22px;
  font-family: 'Sora', sans-serif;
}

.hero-title { font-size: clamp(2rem, 3.8vw, 3rem); color: var(--text); margin-bottom: 18px; line-height: 1.18; }
.hero-title .accent { color: var(--marrom); }
.hero-title .accent-verde { color: var(--verde); }

.hero-sub { font-size: 17px; color: var(--text-sec); margin-bottom: 34px; max-width: 460px; line-height: 1.72; }

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 16px; }
.trust-pill {
  display: flex; align-items: center; gap: 7px;
  background: var(--white); border-radius: 50px;
  padding: 8px 16px; font-size: 13px; font-weight: 500;
  color: var(--text-sec); box-shadow: 0 2px 12px rgba(58,42,32,0.07);
}
.trust-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--verde); flex-shrink: 0; }
.trust-dot.amarelo { background: var(--amarelo); }

.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; }

.hero-img-frame {
  position: relative; width: 100%; max-width: 480px;
}

.hero-img-blob {
  width: 100%; aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(253,168,8,0.15), rgba(47,139,87,0.12));
  border-radius: 62% 38% 55% 45% / 48% 52% 48% 52%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}

.hero-img-blob-inner {
  width: 88%; height: 88%;
  border-radius: 58% 42% 52% 48% / 45% 55% 45% 55%;
  background: linear-gradient(135deg, #F0E4CC, #E8D8B8);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-img-blob-inner img { width: 100%; height: 100%; object-fit: cover; }

.hero-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; padding: 20px;
}

.float-card {
  position: absolute; background: var(--white); border-radius: 16px;
  padding: 12px 16px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px;
  font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 600;
  z-index: 2;
}
.float-card-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.float-card-icon.verde { background: var(--verde-light); }
.float-card-icon.amarelo { background: var(--amarelo-light); }
.float-card-icon svg { width: 18px; height: 18px; }
.float-card-icon.verde svg { color: var(--verde); }
.float-card-icon.amarelo svg { color: var(--marrom); }
.float-card-label { font-size: 11px; color: var(--text-sec); font-weight: 400; display: block; }

.float-top-left { top: 8%; left: -8%; animation: floatY 5s ease-in-out infinite; }
.float-bottom-right { bottom: 10%; right: -8%; animation: floatY 6s ease-in-out infinite reverse; }
.float-mid-right { top: 42%; right: -12%; animation: floatY 7s ease-in-out infinite; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── WAVE DIVIDER ────────────────────────────── */
.wave { display: block; width: 100%; line-height: 0; }
.wave svg { width: 100%; height: 80px; display: block; }

/* ── SECTION BASE ────────────────────────────── */
section { padding: 90px 0; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; font-family: 'Sora', sans-serif;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--verde); background: var(--verde-light);
  padding: 6px 16px; border-radius: 50px; margin-bottom: 14px;
}
.section-label .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--verde); }
.section-label.amarelo-label { color: var(--marrom); background: var(--amarelo-light); }
.section-label.amarelo-label .dot { background: var(--amarelo); }

.section-title { font-size: clamp(1.65rem, 2.8vw, 2.4rem); color: var(--text); margin-bottom: 14px; }
.section-sub { font-size: 16px; color: var(--text-sec); line-height: 1.72; max-width: 540px; }

/* ── SOBRE ───────────────────────────────────── */
.sobre { background: var(--white); }
.sobre-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

.sobre-blob-wrap { position: relative; }
.sobre-main-card {
  background: var(--bg); border-radius: 32px; padding: 44px;
  position: relative; overflow: hidden;
  box-shadow: 0 6px 32px rgba(58,42,32,0.07);
}
.sobre-main-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 5px;
  background: linear-gradient(90deg, var(--amarelo), var(--verde));
}
.sobre-deco-blob {
  position: absolute; bottom: -40px; right: -40px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(47,139,87,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.sobre-icon-wrap { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.sobre-icon-wrap.verde { background: var(--verde-light); color: var(--verde); }
.sobre-icon-wrap.amarelo { background: var(--amarelo-light); color: var(--marrom); }
.sobre-quote {
  background: linear-gradient(135deg, var(--verde), #1e6b41);
  border-radius: var(--r-sm); padding: 20px 22px; margin-top: 20px; color: white;
  position: relative; z-index: 1;
}
.sobre-quote p { font-size: 14px; line-height: 1.65; opacity: 0.92; font-style: italic; }
.sobre-quote-author { font-family: 'Sora', sans-serif; font-size: 12px; font-weight: 600; margin-top: 10px; opacity: 0.8; }

.sobre-text p { color: var(--text-sec); margin-bottom: 16px; line-height: 1.75; }
.sobre-pillars { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }
.sobre-pillar {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px; background: var(--bg);
  border-radius: var(--r-sm); border: 1.5px solid transparent;
  transition: all .25s;
}
.sobre-pillar:hover { border-color: var(--amarelo); transform: translateX(4px); }
.pillar-icon { width: 38px; height: 38px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pillar-icon.verde { background: var(--verde-light); }
.pillar-icon.amarelo { background: var(--amarelo-light); }
.pillar-icon svg { width: 18px; height: 18px; }
.pillar-icon.verde svg { color: var(--verde); }
.pillar-icon.amarelo svg { color: var(--marrom); }
.pillar-text strong { font-size: 14px; font-family: 'Sora', sans-serif; color: var(--text); display: block; margin-bottom: 2px; }
.pillar-text span { font-size: 13px; color: var(--text-sec); }

/* ── SERVIÇOS ────────────────────────────────── */
.servicos { background: var(--bg); }
.servicos-header { text-align: center; max-width: 560px; margin: 0 auto 56px; }
.servicos-header .section-sub { margin: 0 auto; }
.servicos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.servico-card {
  background: var(--white); border-radius: 28px;
  box-shadow: var(--shadow); border: 2px solid transparent;
  transition: all .3s; position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.servico-card-img {
  width: 100%; height: 280px; background: linear-gradient(135deg, #f0e4cc, #e8d8b8);
  display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0;
}
.servico-card-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.servico-card-content { padding: 32px; flex-grow: 1; display: flex; flex-direction: column; }
.servico-card-deco {
  position: absolute; bottom: -30px; right: -30px;
  width: 120px; height: 120px; border-radius: 50%;
  opacity: 0.08;
}
.servico-card-deco.verde { background: var(--verde); }
.servico-card-deco.amarelo { background: var(--amarelo); }
.servico-card:hover { border-color: var(--amarelo); box-shadow: var(--shadow-md); transform: translateY(-5px); }

.servico-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.servico-card p { color: var(--text-sec); font-size: 15px; line-height: 1.72; margin-bottom: 24px; }
.servico-tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 600; font-family: 'Sora', sans-serif;
  padding: 5px 10px; border-radius: 50px; white-space: nowrap; max-width: fit-content;
}
.servico-tag.verde { background: var(--verde-light); color: var(--verde); }
.servico-tag.amarelo { background: var(--amarelo-light); color: var(--marrom); }
.servico-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  font-size: 14px; font-weight: 600; font-family: 'Sora', sans-serif;
  color: var(--marrom); transition: gap .2s;
}
.servico-link:hover { gap: 12px; }

/* ── DIFERENCIAIS ────────────────────────────── */
.diferenciais { background: var(--white); }
.dif-header { text-align: center; max-width: 560px; margin: 0 auto 56px; }
.dif-header .section-sub { margin: 0 auto; }
.dif-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.dif-card {
  background: var(--bg); border-radius: 24px; padding: 32px 24px;
  text-align: center; border: 2px solid transparent; transition: all .3s;
  position: relative; overflow: hidden;
}
.dif-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--amarelo), var(--verde)); transform: scaleX(0); transition: transform .3s; }
.dif-card:hover { border-color: rgba(253,168,8,0.3); box-shadow: var(--shadow-md); transform: translateY(-6px); }
.dif-card:hover::after { transform: scaleX(1); }

.dif-blob {
  width: 72px; height: 72px; margin: 0 auto 18px;
  border-radius: 50% 40% 60% 45% / 45% 55% 45% 55%;
  display: flex; align-items: center; justify-content: center;
}
.dif-blob.verde { background: var(--verde-light); }
.dif-blob.amarelo { background: var(--amarelo-light); }
.dif-blob svg { width: 30px; height: 30px; }
.dif-blob.verde svg { color: var(--verde); }
.dif-blob.amarelo svg { color: var(--marrom); }

.dif-card h4 { font-size: 1rem; margin-bottom: 10px; line-height: 1.35; }
.dif-card p { font-size: 13.5px; color: var(--text-sec); line-height: 1.65; }

/* ── EQUIPE ──────────────────────────────────── */
.equipe { background: var(--bg); }
.equipe-header { text-align: center; max-width: 560px; margin: 0 auto 56px; }
.equipe-header .section-sub { margin: 0 auto; }
.equipe-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 860px; margin: 0 auto; }

.equipe-card { background: var(--white); border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); transition: all .3s; }
.equipe-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.equipe-photo { height: 280px; position: relative; overflow: hidden; }
.equipe-photo img { width: 100%; height: 100%; object-fit: cover; }
.equipe-photo-bg {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #EDD9B8, #D4C4A0);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.equipe-photo-bg::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(0deg, rgba(47,139,87,0.12), transparent);
}
.equipe-photo-bg svg { width: 80px; height: 80px; opacity: 0.28; color: var(--marrom); }

.equipe-info { padding: 24px 26px 28px; }
.equipe-info h4 { font-size: 1.1rem; margin-bottom: 3px; }
.equipe-role { font-size: 12.5px; color: var(--verde); font-weight: 600; font-family: 'Sora', sans-serif; margin-bottom: 10px; }
.equipe-bio { font-size: 13.5px; color: var(--text-sec); line-height: 1.65; }
.equipe-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; flex-wrap: wrap; gap: 8px; }
.equipe-crp { font-size: 11px; font-weight: 600; background: var(--verde-light); color: var(--verde); padding: 4px 10px; border-radius: 50px; }

/* ── DEPOIMENTOS ─────────────────────────────── */
.depoimentos { background: var(--white); }
.depo-header { text-align: center; max-width: 560px; margin: 0 auto 56px; }
.depo-header .section-sub { margin: 0 auto; }

.depo-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 56px; }
.depo-stat {
  background: var(--bg); border-radius: 20px; padding: 24px 16px;
  text-align: center; border: 1.5px solid transparent; transition: border-color .2s;
}
.depo-stat:hover { border-color: var(--amarelo); }
.depo-stat .big { font-family: 'Sora', sans-serif; font-size: 2rem; font-weight: 800; color: var(--marrom); display: block; }
.depo-stat .small { font-size: 13px; color: var(--text-sec); margin-top: 4px; }

.stars { color: var(--amarelo); font-size: 17px; letter-spacing: 1px; margin-bottom: 10px; display: block; }

.depo-carousel { overflow: hidden; width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; }
.depo-track { display: flex; gap: 20px; transition: transform .5s cubic-bezier(.25,.46,.45,.94); padding: 0 24px; }
.depo-card {
  background: var(--bg); border-radius: 24px; padding: 28px;
  flex-shrink: 0; width: calc((100% - 40px) / 3);
  border: 1.5px solid rgba(143,70,35,0.07); transition: all .3s;
  display: flex; flex-direction: column; min-height: 420px;
}
@media (max-width: 1024px) {
  .depo-card { width: calc((100% - 20px) / 2); }
}
@media (max-width: 768px) {
  .depo-card { width: 100%; }
}
.depo-card:hover { box-shadow: var(--shadow-md); border-color: rgba(253,168,8,0.25); }
.depo-quote-mark { font-size: 48px; line-height: 1; color: var(--amarelo); opacity: 0.4; font-family: Georgia, serif; margin-bottom: 4px; }
.depo-quote { font-size: 14.5px; color: var(--text-sec); line-height: 1.72; margin-bottom: 8px; font-style: italic; flex-grow: 1; }
.depo-quote.clamped { display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; flex-grow: 0; }
.btn-leiamais { background: none; border: none; color: var(--verde); font-size: 13px; font-weight: 600; cursor: pointer; padding: 0; font-family: 'Inter', sans-serif; margin-bottom: 14px; text-align: left; }
.depo-author { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 16px; border-top: 1px solid rgba(143,70,35,0.07); }
.depo-av { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 15px; color: white; flex-shrink: 0; }
.depo-av.verde { background: linear-gradient(135deg, var(--verde), #1e6b41); }
.depo-av.amarelo { background: linear-gradient(135deg, var(--amarelo), var(--marrom)); }
.depo-name { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 14px; color: var(--text); }
.depo-tag { font-size: 12px; color: var(--text-sec); }

.depo-controls { display: flex; gap: 12px; justify-content: center; margin-top: 36px; align-items: center; margin-bottom: 32px; }
.depo-btn-more { background: var(--verde); color: white; padding: 14px 28px; border-radius: 50px; text-decoration: none; font-family: 'Sora', sans-serif; font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 10px; transition: all .25s; margin-top: 20px; }
.depo-btn-more:hover { background: #247a4a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(47,139,87,0.35); }
.depo-btn-more svg { width: 16px; height: 16px; }
.depo-btn { width: 42px; height: 42px; border: 2px solid rgba(143,70,35,0.18); border-radius: 50%; background: var(--white); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .2s; color: var(--text-sec); }
.depo-btn:hover { background: var(--amarelo); border-color: var(--amarelo); color: var(--text); }
.depo-dots { display: flex; gap: 8px; align-items: center; }
.depo-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(143,70,35,0.18); cursor: pointer; transition: all .25s; }
.depo-dot.active { width: 22px; border-radius: 4px; background: var(--verde); }

/* ── COMO FUNCIONA ───────────────────────────── */
.como { background: var(--bg); }
.como-header { text-align: center; max-width: 560px; margin: 0 auto 64px; }
.como-header .section-sub { margin: 0 auto; }

.steps-wrap { position: relative; }
.steps-line {
  position: absolute; top: 28px; left: calc(12.5% + 12px); right: calc(12.5% + 12px);
  height: 2px; background: linear-gradient(90deg, var(--amarelo), var(--verde));
  z-index: 0;
}
.steps { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; z-index: 1; }
.step { text-align: center; padding: 0 16px; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.1rem;
  position: relative;
}
.step-num.verde { background: var(--verde); color: white; box-shadow: 0 0 0 8px rgba(47,139,87,0.12); }
.step-num.amarelo { background: var(--amarelo); color: var(--text); box-shadow: 0 0 0 8px rgba(253,168,8,0.15); }
.step h4 { font-size: 0.95rem; margin-bottom: 8px; color: var(--text); }
.step p { font-size: 13.5px; color: var(--text-sec); line-height: 1.65; }

/* ── FAQ ─────────────────────────────────────── */
.faq { background: var(--white); }
.faq-header { text-align: center; max-width: 560px; margin: 0 auto 52px; }
.faq-header .section-sub { margin: 0 auto; }
.faq-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item { background: var(--bg); border-radius: 18px; border: 1.5px solid transparent; transition: border-color .2s; }
.faq-item.open { border-color: var(--verde); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; background: none; border: none; cursor: pointer;
  text-align: left; font-family: 'Sora', sans-serif; font-weight: 600; font-size: 15px; color: var(--text); gap: 16px;
}
.faq-icon { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .3s; background: var(--verde-light); color: var(--verde); }
.faq-item.open .faq-icon { background: var(--verde); color: white; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; padding: 0 24px; }
.faq-a.open { max-height: 260px; padding: 0 24px 20px; }
.faq-a p { font-size: 14.5px; color: var(--text-sec); line-height: 1.72; }

/* ── CTA FINAL ───────────────────────────────── */
.cta-final {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1a6640 0%, var(--verde) 50%, #2d7a4f 100%);
}
.cta-blob-1 { position: absolute; top: -80px; right: -80px; width: 320px; height: 320px; background: rgba(253,168,8,0.15); border-radius: 60% 40% 60% 40%; filter: blur(40px); }
.cta-blob-2 { position: absolute; bottom: -60px; left: -60px; width: 250px; height: 250px; background: rgba(255,255,255,0.08); border-radius: 40% 60% 40% 60%; filter: blur(40px); }
.cta-inner { position: relative; z-index: 1; text-align: center; max-width: 620px; margin: 0 auto; }
.cta-inner .section-label { background: rgba(255,255,255,0.15); color: white; border: 1px solid rgba(255,255,255,0.2); }
.cta-inner .section-label .dot { background: var(--amarelo); }
.cta-inner h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); color: white; margin-bottom: 14px; }
.cta-inner p { color: rgba(255,255,255,0.82); font-size: 16px; line-height: 1.72; margin-bottom: 34px; }

/* ── FOOTER ──────────────────────────────────── */
footer { background: #1C1008; color: rgba(255,255,255,0.65); padding: 68px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 44px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; line-height: 1.72; margin-top: 14px; max-width: 270px; color: rgba(255,255,255,0.55); }
.footer-logo-wrap { display: flex; align-items: center; gap: 10px; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 15px; color: white; }
.footer-logo-wrap img { height: 80px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-logo-box { width: 38px; height: 38px; background: linear-gradient(135deg, var(--amarelo), var(--marrom)); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 800; color: white; }
.footer-col h5 { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 14px; color: white; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color .2s; }
.footer-col ul li a:hover { color: var(--amarelo); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: rgba(255,255,255,0.6); }
.contact-item svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 3px; color: var(--amarelo); }
.social-links { display: flex; gap: 10px; margin-top: 18px; }
.social-link { width: 36px; height: 36px; background: rgba(255,255,255,0.07); border-radius: 10px; display: flex; align-items: center; justify-content: center; transition: all .2s; color: rgba(255,255,255,0.6); }
.social-link:hover { background: var(--amarelo); color: var(--text); }
.social-link svg { width: 17px; height: 17px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px; display: flex; justify-content: space-between; font-size: 12.5px; color: rgba(255,255,255,0.35); flex-wrap: wrap; gap: 8px; }

/* ── WA FLOAT ────────────────────────────────── */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 300; }
.wa-float a { display: flex; align-items: center; justify-content: center; gap: 10px; background: #25D366; color: white; width: 56px; height: 56px; border-radius: 50%; font-family: 'Sora', sans-serif; font-weight: 600; font-size: 14px; box-shadow: 0 4px 16px rgba(37,211,102,0.4); transition: all .25s; }
.wa-float a:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
.wa-pulse { display: none; }
.wa-label { display: none; }
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.3);opacity:.7} }

/* ── FADE UP ─────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fd-1 { transition-delay: .08s; }
.fd-2 { transition-delay: .16s; }
.fd-3 { transition-delay: .24s; }
.fd-4 { transition-delay: .32s; }

/* ── BLOG HOME ───────────────────────────────── */
.blog-home { padding: 90px 0; }
.blog-home-header { text-align: center; max-width: 560px; margin: 0 auto; }
.blog-home-header .section-sub { margin: 0 auto; }
.blog-home-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 40px; }
.blog-home-cta { text-align: center; margin-top: 48px; }

.blog-home-skeleton { background: var(--white); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); }
.skel-img { width: 100%; aspect-ratio: 16/7; background: linear-gradient(90deg,#f0e8dc 25%,#e8ddd0 50%,#f0e8dc 75%); background-size: 200% 100%; animation: shimmer 1.4s infinite; }
.skel-line { height: 14px; border-radius: 7px; margin: 16px 20px 0; background: linear-gradient(90deg,#f0e8dc 25%,#e8ddd0 50%,#f0e8dc 75%); background-size: 200% 100%; animation: shimmer 1.4s infinite; }
.skel-line.short { width: 30%; height: 11px; }
.skel-line.medium { width: 60%; margin-bottom: 20px; }
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

.blog-home-card { background: var(--white); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); border: 2px solid transparent; transition: all .3s; display: flex; flex-direction: column; }
.blog-home-card:hover { border-color: var(--amarelo); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-home-card-img { width: 100%; overflow: hidden; background: #f5ede0; display: block; }
.blog-home-card-img img { width: 100%; height: auto; display: block; }
.blog-home-card-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex-grow: 1; }
.blog-home-card-date { font-size: 12px; color: var(--text-sec); margin-bottom: 8px; font-family:'Sora',sans-serif; font-weight: 500; }
.blog-home-card-title { font-family:'Sora',sans-serif; font-weight: 700; font-size: 1rem; color: var(--text); line-height: 1.4; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-home-card-excerpt { font-size: 13.5px; color: var(--text-sec); line-height: 1.65; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 16px; }
.blog-home-card-link { margin-top: auto; font-size: 13px; font-weight: 600; font-family:'Sora',sans-serif; color: var(--verde); display: inline-flex; align-items: center; gap: 6px; transition: gap .2s; }
.blog-home-card-link:hover { gap: 10px; }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .blog-home-grid { grid-template-columns: 1fr 1fr; }
  .dif-grid { grid-template-columns: repeat(2,1fr); }
  .depo-stats { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); gap: 40px; }
  .steps-line { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .equipe-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .blog-home-grid { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: flex; max-width: 100%; margin: 0 auto 20px; order: -1; }
  .float-card { display: none; }
  .hero-inner { overflow-x: hidden; }
  .equipe-photo { height: 340px; }
  .hero-title { font-size: 1.95rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { justify-content: center; }
  .sobre-inner { grid-template-columns: 1fr; gap: 36px; }
  .sobre-blob-wrap { order: -1; }
  .servicos-grid { grid-template-columns: 1fr; }
  .dif-grid { grid-template-columns: 1fr 1fr; }
  .equipe-grid { grid-template-columns: 1fr; }
  .depo-stats { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .wa-float a .wa-label { display: none; }
  .wa-float a { padding: 15px; border-radius: 50%; }
}
@media (max-width: 480px) {
  .dif-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; gap: 10px; }
  .depo-card { width: 100%; }
  .depo-track { gap: 16px; }
  .depo-controls { gap: 12px; }
  .depo-btn { width: 36px; height: 36px; }
  .depo-btn svg { width: 16px; height: 16px; }
  .depo-dot { width: 7px; height: 7px; }
  .depo-dot.active { width: 16px; }
  .depo-dots { max-width: 60px; overflow: hidden; }
  .depo-dots .depo-dot:nth-child(n+4) { display: none; }
}
