/* ===================== TOKENS / BRAND ===================== */
:root {
  --green:        #2C7E4D;
  --green-dark:   #236A40;
  --red:          #DD2A1E;
  --red-dark:     #B81F14;

  --bg:           #F2F1EC;
  --surface:      #FFFFFF;
  --dark:         #0E1116;

  --text:         #1A1A1A;
  --text-soft:    #51564d;
  --text-light:   #FAFAF7;

  --line:         #E2E0D7;
  --line-soft:    #ECEAE2;

  --radius:       14px;
  --radius-lg:    22px;
  --shadow-sm:    0 1px 2px rgba(14,17,22,.06), 0 1px 3px rgba(14,17,22,.05);
  --shadow:       0 10px 30px -12px rgba(14,17,22,.18);
  --shadow-lg:    0 24px 60px -24px rgba(14,17,22,.30);

  --maxw:         1140px;
  --ease:         cubic-bezier(.4,0,.2,1);

  --font-body:    'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-head:    'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; letter-spacing: -0.02em; }

/* Foco visível para navegação por teclado (acessibilidade) */
:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 6px;
}
.btn:focus-visible, .nav-cta:focus-visible { outline-offset: 4px; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-weight: 600; font-size: .98rem;
  padding: 13px 24px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .15s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--green); color: #fff; box-shadow: 0 8px 18px -8px rgba(44,126,77,.6);
}
.btn-primary:hover { background: var(--green-dark); box-shadow: 0 12px 24px -8px rgba(44,126,77,.7); }
.btn-ghost {
  background: transparent; color: var(--green-dark); border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--green); background: #fff; }
.btn-block { width: 100%; }

/* ===================== BARRA DE TOPO ===================== */
.topbar { background: var(--green-dark); color: #e6f1ea; font-size: .82rem; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 40px; }
.topbar-contact { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.topbar-contact a { display: inline-flex; align-items: center; gap: 6px; color: #e6f1ea; font-weight: 500; }
.topbar-contact a:hover { color: #fff; }
.topbar-contact svg { opacity: .8; }
.tb-sep { width: 1px; height: 13px; background: rgba(255,255,255,.28); }
.topbar-social { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.topbar-social a { color: #bcdccb; display: inline-flex; transition: color .15s var(--ease); }
.topbar-social a:hover { color: #fff; }

/* ===================== HEADER ===================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(242,241,236,.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}
.site-header.scrolled {
  background: rgba(242,241,236,.96);
  border-bottom-color: transparent;
  box-shadow: 0 6px 22px -12px rgba(14,17,22,.28);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand-logo { height: 34px; width: auto; }
.nav { display: flex; align-items: center; gap: 17px; }
.nav a { font-weight: 500; font-size: .9rem; color: var(--text-soft); transition: color .15s var(--ease); }
.nav a:hover { color: var(--text); }
.nav .nav-cta {
  color: #fff; background: var(--green); padding: 9px 18px; border-radius: 999px; font-weight: 600;
}
.nav .nav-cta:hover { background: var(--green-dark); color: #fff; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .25s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== HERO ===================== */
.eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--green-dark); margin-bottom: 16px;
}
.eyebrow-light { color: #8fdcb0; }

.hero { padding: 72px 0 56px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 420px at 88% -10%, rgba(44,126,77,.10), transparent 60%),
    radial-gradient(700px 360px at -5% 30%, rgba(221,42,30,.06), transparent 55%);
  pointer-events: none;
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.25fr .9fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 800; }
.hl-green { color: var(--green); }
.lead { margin-top: 20px; font-size: 1.12rem; color: var(--text-soft); max-width: 38ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-note { margin-top: 20px; font-size: .92rem; color: var(--text-soft); }
.hero-note strong { color: var(--green-dark); }
.hero-trust {
  margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 10px 22px;
}
.hero-trust li {
  position: relative; padding-left: 20px;
  font-size: .88rem; font-weight: 500; color: var(--text-soft); letter-spacing: .01em;
}
.hero-trust li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--green); font-weight: 800; font-size: .82rem;
}
.hero-trust strong { color: var(--text); font-weight: 700; }

/* ===================== TRUST BAR ===================== */
.trustbar {
  position: relative; overflow: hidden;
  background:
    radial-gradient(680px 300px at 12% 130%, rgba(44,126,77,.42), transparent 62%),
    radial-gradient(560px 260px at 88% -30%, rgba(74,222,128,.20), transparent 60%),
    linear-gradient(120deg, #0E1116 0%, #10231a 100%);
  color: var(--text-light);
}
.trust-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 44px 22px; }
.trust-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px; }
.trust-item strong {
  font-size: clamp(2.4rem, 5.5vw, 3.6rem); font-weight: 800; line-height: 1; color: #4ade80;
  font-variant-numeric: tabular-nums;
}
.trust-item span { font-size: .98rem; color: #c5c8cc; }

/* ===================== SECTIONS ===================== */
.section { padding: 84px 0; }
.section-alt { background: var(--surface); }
.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; }
.section-sub { margin-top: 14px; font-size: 1.05rem; color: var(--text-soft); }
.section-cta { margin-top: 44px; text-align: center; }

/* ===================== SERVIÇOS / CARDS ===================== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .18s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.section-alt .card { background: var(--bg); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--green); }
.card-img { width: 100%; height: 168px; object-fit: cover; display: block; transition: transform .35s var(--ease); }
.card:hover .card-img { transform: scale(1.05); }
.card-body { padding: 22px; }
.card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.card p { font-size: .94rem; color: var(--text-soft); }
.card-accent { border-color: var(--red); border-width: 1.5px; }
.card-accent:hover { border-color: var(--red); }
.tag {
  font-size: .62rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  background: rgba(221,42,30,.1); color: var(--red-dark); padding: 3px 8px; border-radius: 999px;
}

/* ===================== DIFERENCIAIS ===================== */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.feature { display: flex; gap: 16px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg); }
.section-alt .feature { background: var(--surface); }
.feature-ico {
  flex: 0 0 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(44,126,77,.1); color: var(--green-dark); font-size: 1.2rem; font-weight: 800;
}
.feature h3 { font-size: 1.1rem; margin-bottom: 6px; }
.feature p { font-size: .94rem; color: var(--text-soft); }

.roi {
  margin-top: 40px; display: flex; align-items: center; gap: 28px;
  background: linear-gradient(120deg, var(--green-dark), var(--green));
  color: #fff; border-radius: var(--radius-lg); padding: 34px 38px; box-shadow: var(--shadow);
}
.roi-num { font-size: clamp(2.6rem, 6vw, 4rem); font-weight: 800; line-height: 1; flex: 0 0 auto; }
.roi p { font-size: 1.05rem; opacity: .96; }
.roi strong { color: #fff; }

/* ===================== PROCESSO / STEPS ===================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; position: relative; box-shadow: var(--shadow-sm); }
.step-n {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px;
  background: var(--green); color: #fff; font-weight: 800; font-size: 1.05rem; margin-bottom: 16px;
}
.step h3 { font-size: 1.08rem; margin-bottom: 8px; }
.step p { font-size: .92rem; color: var(--text-soft); }

/* ===================== SOBRE (dark) ===================== */
.section-dark { background: var(--dark); color: var(--text-light); }
.about-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.about-copy h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 18px; }
.about-copy p { color: #c5c8cc; margin-bottom: 14px; }
.about-points { display: grid; gap: 14px; }
.about-points li {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius); padding: 16px 18px; font-size: .96rem; color: #d6d9dc;
}
.about-points strong { color: #fff; }

/* ===================== CONTATO ===================== */
.contact-card {
  max-width: 720px; margin-inline: auto; text-align: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 52px 40px; box-shadow: var(--shadow);
}
.contact-card .section-sub { margin-inline: auto; max-width: 52ch; }
.btn-wpp {
  margin-top: 30px; background: #25D366; color: #fff; font-size: 1.05rem;
  padding: 16px 30px; box-shadow: 0 10px 24px -8px rgba(37,211,102,.6);
}
.btn-wpp:hover { background: #1ebe5a; }
.wpp-ico { flex: 0 0 auto; }
.contact-mini {
  margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line-soft);
  display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
}
.contact-mini li { display: flex; flex-direction: column; gap: 2px; }
.contact-mini span { font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-soft); }
.contact-mini a { font-size: 1rem; font-weight: 600; color: var(--green-dark); }
.contact-mini a:hover { color: var(--green); }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--dark); color: #c5c8cc; padding-top: 56px; }
.footer-inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 36px; }
.footer-logo { height: 30px; background: #fff; padding: 7px 12px; border-radius: 8px; }
.footer-brand { max-width: 340px; }
.footer-brand p { margin-top: 16px; font-size: .92rem; }
.footer-wpp { display: inline-block; margin-top: 14px; font-weight: 700; color: #4ade80; }
.footer-wpp:hover { color: #86efac; }
.footer-social { margin-top: 18px; }
.social-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 1.05rem; font-weight: 600;
  color: #E1306C; transition: color .15s var(--ease), transform .15s var(--ease);
}
.social-link:hover { color: #f04d86; transform: translateY(-2px); }
.social-linkedin { color: #0A66C2; }
.social-linkedin:hover { color: #378fe9; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 20px; align-items: flex-start; }
.footer-nav a { font-size: .92rem; color: #c5c8cc; }
.footer-nav a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 22px; border-top: 1px solid rgba(255,255,255,.08); font-size: .82rem; color: #8b8f93;
}

/* ===================== HERO MEDIA (mosaico) ===================== */
.hero-media {
  position: relative; margin: 0; height: 480px;
  display: grid; grid-template-columns: 1.5fr 1fr; grid-template-rows: 1fr 1fr; gap: 12px;
}
.hm-img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.hm-main { grid-row: 1 / 3; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.hero-badge {
  position: absolute; left: -18px; bottom: 28px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px 20px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 14px; max-width: 290px;
}
.hero-badge strong {
  font-size: 2.4rem; font-weight: 800; color: var(--green); line-height: 1;
  font-variant-numeric: tabular-nums; min-width: 3.4ch; text-align: center; flex: 0 0 auto;
}
.hero-badge span { font-size: .86rem; color: var(--text-soft); }

/* ===================== DESTAQUE AVCB ===================== */
.avcb-band { background: var(--bg); }
.avcb-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.avcb-media { position: relative; }
.avcb-img-main {
  width: 100%; height: 420px; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.avcb-img-inset {
  position: absolute; right: -22px; bottom: -28px;
  width: 180px; height: 220px; object-fit: cover;
  border-radius: var(--radius); border: 5px solid var(--bg); box-shadow: var(--shadow);
}
.avcb-copy h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 16px; }
.avcb-copy > p { color: var(--text-soft); margin-bottom: 18px; }
.dot-red { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--red); margin-right: 4px; vertical-align: middle; }
.avcb-list { display: grid; gap: 12px; margin-bottom: 26px; }
.avcb-list li { position: relative; padding-left: 28px; font-size: .98rem; font-weight: 500; }
.avcb-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 19px; height: 19px; border-radius: 50%; background: rgba(221,42,30,.12);
  color: var(--red-dark); font-size: .68rem; font-weight: 800; display: grid; place-items: center;
}

/* ===================== PSICOSSOCIAL ===================== */
.psico-figure { margin: 0; }
.psico-figure img {
  width: 100%; height: 420px; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
}

/* ===================== EPI GALLERY ===================== */
.epi-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.epi-item { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.epi-item img {
  width: 100%; height: 300px; object-fit: cover; display: block;
  transition: transform .35s var(--ease);
}
.epi-item:hover img { transform: scale(1.05); }
.epi-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 18px 16px; color: #fff; font-weight: 600; font-size: .98rem;
  background: linear-gradient(transparent, rgba(14,17,22,.82));
}

/* ===================== ABOUT MEDIA ===================== */
.about-media { display: grid; gap: 18px; }
.about-figure { margin: 0; }
.about-figure img {
  width: 100%; height: 220px; object-fit: cover;
  border-radius: var(--radius); border: 1px solid rgba(255,255,255,.1);
}

/* ===================== NOVA NR-01 (cards de urgência) ===================== */
.nr01-wrap { margin-top: 56px; }
.nr01-title { font-size: clamp(1.3rem, 2.4vw, 1.7rem); font-weight: 800; margin-bottom: 24px; }
.nr01-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.nr01-card {
  background: var(--surface); border: 1px solid var(--line); border-left: 4px solid var(--green);
  border-radius: var(--radius); padding: 22px 20px; box-shadow: var(--shadow-sm);
}
.nr01-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.nr01-card p { font-size: .92rem; color: var(--text-soft); }
.nr01-card--alert { border-left-color: var(--red); background: #fff6f5; }
.nr01-card--alert strong { color: var(--red-dark); }

/* ===================== DEPOIMENTOS ===================== */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial {
  margin: 0; background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 24px; display: flex; flex-direction: column; gap: 14px;
}
.stars { color: #f5a623; font-size: 1.05rem; letter-spacing: 2px; }
.testimonial blockquote { margin: 0; font-size: 1.02rem; line-height: 1.6; color: var(--text); }
.testimonial figcaption { margin-top: auto; display: flex; flex-direction: column; gap: 2px; }
.testimonial figcaption strong { font-weight: 700; }
.testimonial figcaption span { font-size: .86rem; color: var(--text-soft); }

/* ===================== POSTS (cards de artigo) ===================== */
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post-card {
  display: flex; flex-direction: column; color: inherit; text-decoration: none;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .18s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--green); }
.post-card > img { width: 100%; height: 190px; object-fit: cover; }
.post-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-cat { font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--green-dark); }
.post-card h3 { font-size: 1.12rem; font-weight: 700; line-height: 1.32; }
.post-body p { font-size: .92rem; color: var(--text-soft); }
.post-meta { margin-top: auto; font-size: .8rem; color: var(--text-soft); }
.blog-social-title { text-align: center; font-size: 1.05rem; font-weight: 700; color: var(--text-soft); margin: 56px 0 22px; }

/* ===================== BLOG — cabeçalho/rodapé das páginas internas ===================== */
.blog-header {
  position: sticky; top: 0; z-index: 50; background: rgba(242,241,236,.9);
  backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid var(--line);
}
.blog-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 72px; flex-wrap: wrap; }
.blog-header-links { display: flex; align-items: center; gap: 18px; font-size: .92rem; }
.blog-header-links a { color: var(--text-soft); font-weight: 500; }
.blog-header-links a:hover { color: var(--text); }
.blog-header-links .nav-cta { color: #fff; background: var(--green); padding: 9px 18px; border-radius: 999px; font-weight: 600; }
.blog-header-links .nav-cta:hover { background: var(--green-dark); color: #fff; }

/* ===================== BLOG — listagem ===================== */
.blog-hero { padding: 56px 0 8px; }
.blog-hero .eyebrow { margin-bottom: 12px; }
.blog-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; }
.blog-hero p { margin-top: 12px; color: var(--text-soft); font-size: 1.1rem; max-width: 62ch; }

/* ===================== ARTIGO (prose) ===================== */
.article-wrap { padding: 32px 0 80px; }
.article { max-width: 760px; margin-inline: auto; }
.article-back { display: inline-block; margin-bottom: 22px; color: var(--green-dark); font-weight: 600; }
.article-back:hover { color: var(--green); }
.article-cat { font-size: .76rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--green-dark); }
.article h1 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-weight: 800; line-height: 1.2; margin: 12px 0 0; }
.article-meta { margin: 16px 0 26px; font-size: .9rem; color: var(--text-soft); }
.article-cover { width: 100%; height: 380px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); margin-bottom: 34px; }
.article-body { font-size: 1.07rem; line-height: 1.78; color: #2a2d28; }
.article-body h2 { font-size: 1.5rem; font-weight: 800; line-height: 1.25; margin: 38px 0 12px; color: var(--text); }
.article-body h3 { font-size: 1.2rem; font-weight: 700; margin: 26px 0 8px; }
.article-body p { margin-bottom: 18px; }
.article-body ul { margin: 0 0 20px; padding: 0; display: grid; gap: 10px; }
.article-body li { position: relative; padding-left: 28px; }
.article-body li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--green); font-weight: 800; }
.article-body strong { color: var(--text); font-weight: 700; }
.article-cta { margin-top: 40px; background: linear-gradient(120deg, var(--green-dark), var(--green)); color: #fff; border-radius: var(--radius-lg); padding: 30px 32px; }
.article-cta h3 { font-size: 1.35rem; font-weight: 800; margin-bottom: 8px; }
.article-cta p { opacity: .95; margin-bottom: 16px; }
.article-cta .btn { background: #fff; color: var(--green-dark); }
.article-cta .btn:hover { background: #f0efe9; }

/* ===================== BLOG / CANAIS ===================== */
.blog-channels { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.channel-card {
  display: flex; gap: 18px; align-items: flex-start; padding: 28px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); transition: transform .18s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.channel-card:not(.is-soon):hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--green); }
.channel-ico {
  flex: 0 0 auto; width: 54px; height: 54px; border-radius: 14px;
  display: grid; place-items: center; color: #fff;
}
.channel-instagram .channel-ico { background: linear-gradient(45deg, #feda75, #d62976 45%, #962fbf 75%, #4f5bd5); }
.channel-linkedin .channel-ico { background: #0A66C2; }
.channel-body h3 { font-size: 1.2rem; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.channel-body p { font-size: .94rem; color: var(--text-soft); margin: 7px 0 12px; }
.channel-cta { font-weight: 600; color: var(--green-dark); }
.channel-card.is-soon { opacity: .65; }
.channel-card.is-soon .channel-cta { color: var(--text-soft); }
.soon-badge {
  font-size: .6rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  background: var(--line); color: var(--text-soft); padding: 3px 8px; border-radius: 999px;
}

/* ===================== FAIXA CTA ===================== */
.cta-band { position: relative; padding: 88px 0; background: var(--dark); overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: url("assets/fotos/trabalhador.jpg") center 30% / cover no-repeat;
  transform: scale(1.05);
}
.cta-band-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(14,17,22,.92) 30%, rgba(35,106,64,.78) 100%);
}
.cta-band-inner { position: relative; max-width: 720px; color: #fff; }
.cta-band-inner h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); font-weight: 800; }
.cta-band-inner p { margin: 16px 0 28px; font-size: 1.1rem; color: #dfe2e5; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px) {
  .hero-inner, .about-inner, .contact-inner, .avcb-inner { grid-template-columns: 1fr; gap: 36px; }
  .cards, .steps, .nr01-cards, .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; }
  .lead { max-width: none; }
  .hero-media { height: 380px; }
  .hero-badge { left: 16px; }
  .avcb-media { margin-bottom: 28px; }
  .epi-gallery { grid-template-columns: repeat(3, 1fr); }
  .epi-item img { height: 220px; }
  .psico-figure img { height: 340px; }
}
@media (max-width: 860px) {
  .tb-hide-sm { display: none; }
  .topbar { font-size: .78rem; }
  .topbar-inner { min-height: 36px; }
}
@media (max-width: 720px) {
  .topbar { display: none; }
}
@media (max-width: 720px) {
  .nav {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch;
    gap: 0; background: var(--bg); border-bottom: 1px solid var(--line);
    padding: 12px 22px 22px; transform: translateY(-130%); transition: transform .28s var(--ease);
    box-shadow: var(--shadow);
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 14px 4px; border-bottom: 1px solid var(--line-soft); }
  .nav .nav-cta { text-align: center; margin-top: 10px; border-bottom: 0; }
  .nav-toggle { display: flex; }
}
@media (max-width: 560px) {
  .section { padding: 60px 0; }
  .cards, .steps, .features, .epi-gallery, .nr01-cards, .blog-channels, .posts-grid { grid-template-columns: 1fr; }
  .article-cover { height: 240px; }
  .trust-grid { gap: 14px; padding: 32px 18px; }
  .contact-card { padding: 40px 24px; }
  .contact-mini { gap: 24px; }
  .roi { flex-direction: column; text-align: center; gap: 14px; padding: 28px 24px; }
  .footer-bottom { flex-direction: column; }
  .avcb-img-inset { width: 120px; height: 150px; right: 12px; bottom: -20px; }
  .hero-media { height: 320px; gap: 8px; }
  .hero-badge strong { font-size: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}

/* ===== Pôster do serviço de recarga elétrica ===== */
.ev-poster { max-width: 360px; margin: 36px auto 0; }
.ev-poster img {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.ev-poster { max-width: 820px; margin: 36px auto 0; }
.ev-poster img {
  width: 100%; height: 340px; object-fit: cover; display: block;
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.ev-cta { max-width: 620px; margin: 30px auto 0; text-align: center; }
.ev-cta h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); line-height: 1.25; margin-bottom: 10px; }
.ev-cta > p { color: var(--text-soft); margin-bottom: 22px; }
.ev-credit { margin-top: 22px; font-size: .92rem; color: var(--text-soft); }
.ev-credit strong { color: var(--text); }

/* ===================== TREINAMENTOS (NRs) ===================== */
.nr-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.nr-item {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 14px 16px; box-shadow: var(--shadow-sm);
  transition: transform .18s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.section-alt .nr-item { background: var(--surface); }
.nr-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--green); }
.nr-code {
  flex: 0 0 auto; min-width: 52px; text-align: center;
  background: rgba(44,126,77,.1); color: var(--green-dark);
  font-weight: 800; font-size: .82rem; letter-spacing: .02em;
  padding: 6px 8px; border-radius: 8px; font-variant-numeric: tabular-nums;
}
.nr-name { font-size: .92rem; font-weight: 500; color: var(--text); line-height: 1.3; }

.modalidades {
  margin-top: 26px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.modalidade {
  border-left: 4px solid var(--green); background: var(--bg);
  border-radius: var(--radius); padding: 18px 20px; box-shadow: var(--shadow-sm);
}
.section-alt .modalidade { background: var(--surface); }
.modalidade strong { display: block; font-size: 1.02rem; margin-bottom: 6px; }
.modalidade span { font-size: .9rem; color: var(--text-soft); }

/* ===================== SEGMENTOS (prova social) ===================== */
.seg-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.seg-chip {
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  padding: 11px 22px; font-size: .96rem; font-weight: 600; color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: transform .18s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.seg-chip:hover { transform: translateY(-2px); border-color: var(--green); color: var(--green-dark); }

/* ===================== FAQ (acordeão) ===================== */
.faq-list { max-width: 800px; margin-inline: auto; display: grid; gap: 12px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 54px 20px 22px; position: relative;
  font-weight: 700; font-size: 1.04rem; color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; border-radius: 50%; background: rgba(44,126,77,.1);
  color: var(--green-dark); font-weight: 800; font-size: 1.1rem;
  display: grid; place-items: center; transition: transform .2s var(--ease), background .2s var(--ease);
}
.faq-item[open] summary::after { content: "−"; background: var(--green); color: #fff; }
.faq-item summary:hover { color: var(--green-dark); }
.faq-answer { padding: 0 22px 22px; }
.faq-answer p { font-size: .98rem; color: var(--text-soft); line-height: 1.7; }
.faq-answer strong { color: var(--text); }

@media (max-width: 980px) {
  .nr-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .nr-grid { grid-template-columns: repeat(2, 1fr); }
  .modalidades { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .nr-grid { grid-template-columns: 1fr; }
}

/* ===================== COMPROMISSOS ===================== */
.commitments { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.commit {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; box-shadow: var(--shadow-sm);
  transition: transform .18s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.commit:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--green); }
.commit-ico {
  display: grid; place-items: center; width: 48px; height: 48px; border-radius: 12px;
  background: rgba(44,126,77,.1); font-size: 1.4rem; margin-bottom: 16px;
}
.commit h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 8px; }
.commit p { font-size: .92rem; color: var(--text-soft); }

/* ===================== CONTATO (grid + formulário) ===================== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: start;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 44px; box-shadow: var(--shadow);
}
.contact-intro h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.contact-intro .section-sub { margin-bottom: 8px; }
.contact-intro .btn-wpp { margin-top: 24px; }
.contact-intro .contact-mini { justify-content: flex-start; text-align: left; }
.cm-plain { font-size: 1rem; font-weight: 600; color: var(--text); }

.quote-form {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; display: grid; gap: 14px;
}
.quote-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 2px; }
.field { display: grid; gap: 6px; }
.field label { font-size: .82rem; font-weight: 600; color: var(--text-soft); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: .96rem; color: var(--text);
  background: var(--surface); border: 1px solid var(--line); border-radius: 10px;
  padding: 11px 13px; width: 100%; transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field textarea { resize: vertical; min-height: 78px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(44,126,77,.15);
}
.field input::placeholder, .field textarea::placeholder { color: #9aa09a; }
.quote-form .btn-block { margin-top: 4px; }
.quote-note { font-size: .8rem; color: var(--text-soft); text-align: center; }

@media (max-width: 980px) {
  .commitments { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; padding: 32px; }
}
@media (max-width: 560px) {
  .commitments { grid-template-columns: 1fr; }
  .contact-grid { padding: 24px; }
}

/* ===== Revelar ao rolar (transição entre seções) ===== */
html.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
html.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}
/* Acessibilidade: sem movimento, mostra tudo imediatamente */
@media (prefers-reduced-motion: reduce) {
  html.reveal-ready .reveal { opacity: 1 !important; transform: none !important; }
}

/* ===================== ACESSO À APOSTILA (via QR code) ===================== */
.access-wrap { padding: 40px 0 80px; }
.access { max-width: 480px; margin-inline: auto; display: flex; flex-direction: column; gap: 30px; }

.access-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 30px 26px;
}
.access-card .eyebrow { display: block; margin-bottom: 8px; }
.access-card h1 { font-size: 1.5rem; line-height: 1.25; }
.access-card .access-sub { margin-top: 10px; color: var(--text-soft); font-size: .95rem; }

.access-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.access-chip {
  display: inline-flex; align-items: center; gap: 6px; font-size: .78rem; font-weight: 500;
  color: var(--text-soft); background: var(--bg); border-radius: 999px; padding: 6px 12px;
}
.access-chip svg { width: 13px; height: 13px; flex-shrink: 0; }

.access-cta { margin-top: 22px; }
.access-cta-hint { text-align: center; font-size: .78rem; color: #8A8C81; margin-top: 10px; }
.access-pdf-link {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line);
  font-size: .82rem; font-weight: 500; color: var(--text-soft); text-align: center;
}
.access-pdf-link:hover { color: var(--green-dark); }

.access-section-head { display: flex; flex-direction: column; gap: 4px; }
.access-section-head h2 { font-size: 1.05rem; }
.access-section-head p { margin: 0; color: var(--text-soft); font-size: .88rem; }

.access-platforms { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.access-platform {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px 14px 18px; box-shadow: var(--shadow-sm);
}
.access-platform-head { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.access-platform-head svg { width: 17px; height: 17px; color: var(--text-soft); }
.access-platform-head span { font-family: var(--font-head); font-weight: 700; font-size: .84rem; }

.access-steps { display: flex; flex-direction: column; gap: 12px; }
.access-step { display: flex; gap: 10px; align-items: flex-start; }
.access-step-num {
  flex-shrink: 0; width: 21px; height: 21px; border-radius: 50%;
  background: #E7EFE9; color: var(--green); font-size: .72rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; font-family: var(--font-head);
}
.access-step p { margin: 0; font-size: .83rem; color: var(--text); padding-top: 2px; }
.access-step .icon-inline { display: inline-flex; vertical-align: -3px; width: 14px; height: 14px; margin: 0 1px; color: var(--text-soft); }

.access-note {
  display: flex; gap: 9px; align-items: flex-start; color: var(--text-soft); font-size: .8rem;
  padding: 0 2px;
}
.access-note svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 1px; color: var(--green); }

@media (max-width: 380px) {
  .access-platforms { grid-template-columns: 1fr; }
}
