/* ============================================================
   MAISALUNOS CRM — site.css
   Design system limpo, sem dependência do Mobirise
   ============================================================ */

:root {
  --color-dark: #032c45;
  --color-blue: #074973;
  --color-mid: #324a8b;
  --color-red: #FF4438;
  --color-light: #f1f3f5;
  --gradient: linear-gradient(135deg,
      #021622 0%, #0c2644 20%, #101d42 40%,
      #8b3d7c 60%, #c8345e 80%, #FF4438 100%);
  --font: 'Inter Tight', 'Segoe UI', sans-serif;
  --navbar-h: 80px;
  --radius: 1.5rem;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
  --gradient-blue: linear-gradient(135deg, #032c45 0%, #074973 40%, #324a8b 100%);
}

/* ── Reset & base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: var(--navbar-h);
}

body {
  font-family: var(--font);
  color: #232323;
  margin: 0;
  line-height: 1.6;
  background: #fff;
  overflow-x: hidden;
  max-width: 100vw;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

a {
  color: var(--color-mid);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  line-height: 1.15;
}

/* ── Navbar ── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--navbar-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}

.site-nav.scrolled {
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.site-nav.gradient-fixed {
  background: var(--gradient);
}

.site-nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.site-nav-logo {
  display: flex;
  align-items: center;
  line-height: 0;
}

.site-nav-logo img {
  height: 3.2rem;
  width: auto;
  border-radius: 0;
}

#logo-white {
  display: block;
}

#logo-color {
  display: none;
}

.site-nav.scrolled #logo-white {
  display: none;
}

.site-nav.scrolled #logo-color {
  display: block;
}

.site-nav-social {
  position: absolute;
  left: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.05rem;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  text-decoration: none;
}

.site-nav-social a:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  transform: scale(1.08);
  text-decoration: none;
}

.site-nav.scrolled .site-nav-social a {
  background: rgba(0, 0, 0, 0.06);
  color: var(--color-mid);
}

.site-nav.scrolled .site-nav-social a:hover {
  background: rgba(0, 0, 0, 0.12);
  color: var(--color-dark);
}

.site-nav-right {
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav-back {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  margin-right: 4px;
  padding-right: 14px;
  transition: color 0.2s;
  text-decoration: none;
}

.site-nav-back:hover {
  color: #fff;
  text-decoration: none;
}

.site-nav.scrolled .site-nav-back {
  color: var(--color-mid);
  border-right-color: rgba(0, 0, 0, 0.1);
}

.site-nav.scrolled .site-nav-back:hover {
  color: var(--color-dark);
}

.site-nav-link {
  display: flex;
  align-items: center;
  color: white;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.site-nav-link:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
}

.site-nav.scrolled .site-nav-link {
  color: var(--color-dark);
}

.site-nav.scrolled .site-nav-link:hover {
  background: rgba(0, 0, 0, 0.06);
  color: var(--color-dark);
}

.site-nav-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
}

.site-nav-cta:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  text-decoration: none;
  color: #fff;
}

.site-nav.scrolled .site-nav-cta {
  color: var(--color-dark);
  border-color: rgba(0, 0, 0, 0.2);
}

.site-nav.scrolled .site-nav-cta:hover {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.35);
}

/* ── Buttons ── */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(180deg, #1a6fb5 0%, #0a4a7a 50%, #032c45 100%);
  color: #fff;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 2px solid #011a2b;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(3, 44, 69, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: box-shadow 0.2s, transform 0.15s;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(3, 44, 69, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  text-decoration: none;
  color: #fff;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--color-mid);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 8px;
  border: 2px solid var(--color-mid);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
  background: var(--color-mid);
  color: #fff;
  text-decoration: none;
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: background 0.2s;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  text-decoration: none;
  color: #fff;
}

/* ── Section wrappers ── */
.site-section {
  padding: 80px 0;
  background: #fff;
}

.site-section-alt {
  padding: 80px 0;
  background: var(--color-light);
}

.site-section-dark {
  padding: 80px 0;
  background: url('../images/Fundo.svg') center / cover no-repeat;
  color: #fff;
  position: relative;
}

.site-section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(3, 18, 35, 0.72);
  pointer-events: none;
  z-index: 0;
}

.site-section-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://datalakepbi.blob.core.windows.net/fonts/app_static_patternbackground.png') center / auto repeat;
  opacity: 0.02;
  pointer-events: none;
  z-index: 0;
}

.site-section-dark .container {
  position: relative;
  z-index: 1;
}

.section-label {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-dark);
  margin-bottom: 20px;
}

.section-title-light {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 0;
}

/* ── Hero ── */
.site-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: clip;
  background: var(--gradient);
}

.site-hero-bg {
  position: absolute;
  top: 50%;
  left: 0;
  right: auto;
  bottom: auto;
  width: 100%;
  /* height calculado por JS */
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.site-hero-bg-img {
  display: block;
  width: 800px;
  height: 100%;
  object-fit: contain;
  object-position: top left;
}

.site-hero-bg2 {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.site-hero-video {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: calc(100% - var(--navbar-h));
  object-fit: cover;
  object-position: bottom right;
  opacity: 0.22;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 22%), linear-gradient(to right, transparent 0%, black 28%);
  -webkit-mask-composite: destination-in;
  mask-image: linear-gradient(to bottom, transparent 0%, black 22%), linear-gradient(to right, transparent 0%, black 28%);
  mask-composite: intersect;
}

.site-hero-content {
  position: relative;
  z-index: 1;
  padding: calc(var(--navbar-h) + 48px) 0 72px;
  width: 100%;
}

.site-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.site-hero h1 strong {
  color: var(--color-red);
}

.subheadline {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #fff;
  margin-bottom: 28px;
  max-width: 600px;
}

.bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
}

.bullets li {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bullets li::before {
  content: '✔';
  color: var(--color-red);
  font-weight: 700;
  flex-shrink: 0;
}

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

.site-hero-social {
  display: flex;
  gap: 10px;
  margin-bottom: 36px;
}

.site-hero-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}

.site-hero-social a:hover {
  background: rgba(0, 0, 0, 0.6);
  transform: scale(1.1);
  text-decoration: none;
  color: #FF4438;
}

.site-hero-social a svg {
  display: block;
}

/* ── Stats section (Sessão 0) ── */
.stats-section {
  padding: 72px 0;
  background: #fff;
}

.stats-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.apoio-logo {
  height: 80px;
  width: auto;
  border-radius: 0;
  margin-bottom: 24px;
}

.stats-intro {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 40px;
  max-width: 540px;
  line-height: 1.7;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  width: 100%;
}

.stat-card {
  background: var(--color-light);
  border-radius: var(--radius);
  padding: 28px 16px;
  text-align: center;
}

.stat-num {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--color-mid);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.875rem;
  color: #555;
  font-weight: 500;
  line-height: 1.4;
}

.proposta-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  height: 520px;
}

.proposta-img {
  width: 100%;
  height: 640px;
  object-fit: contain;
  will-change: transform;
}

/* ── Challenge section ── */
.challenge-list {
  list-style: none;
  padding: 0;
  margin: 28px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.challenge-list li {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1rem;
  color: #fff;
}

.challenge-list li::before {
  content: '—';
  color: var(--color-red);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Feature cards ── */
.feature-card {
  background: var(--color-mid);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

#card-escolas .feature-card {
  background: #3d3432;
  /* tom quente escuro extraído da imagem 10 */
}

#card-suporte .feature-card {
  background: #2e3537;
  /* cinza-petróleo extraído da imagem 11 */
}

#card-treinamentos .feature-card {
  background: #4a4846;
  /* cinza escuro extraído da imagem 12 */
}

#card-whatsapp .feature-card {
  background: #6b4e08;
  /* dourado escuro derivado do amarelo da imagem 13 */
}

#card-painel .feature-card {
  background: #1e4d72;
  /* azul profundo derivado do azul claro da imagem 14 */
}

#card-google .feature-card {
  background: #231917;
  /* marrom muito escuro extraído da imagem mbr */
}

.feature-card-img {
  overflow: hidden;
}

.feature-card-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 0;
  display: block;
  transition: transform 0.4s;
}

.feature-card:hover .feature-card-img img {
  transform: scale(1.04);
}

.feature-card-body {
  padding: 24px;
  flex: 1;
}

.feature-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-red);
  margin-bottom: 10px;
}

.feature-card-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  margin: 0;
}

/* ── Comparison table ── */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.comparison-table th {
  background: var(--color-mid);
  color: #fff;
  padding: 16px 20px;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
}

.comparison-table th:last-child {
  background: var(--color-red);
}

.comparison-table td {
  padding: 14px 20px;
  font-size: 0.9rem;
  border-bottom: 1px solid #e9ecef;
  color: #333;
}

.comparison-table tr:nth-child(even) td {
  background: #f8f9fa;
}

.comparison-table td:last-child {
  font-weight: 600;
  color: var(--color-mid);
}

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid #e9ecef;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-question .faq-icon {
  font-size: 1.4rem;
  color: var(--color-red);
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}

.faq-item.open .faq-question .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 0 20px;
  font-size: 0.975rem;
  color: #444;
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ── CTA banner ── */
.cta-banner {
  background: var(--gradient);
  padding: 72px 0;
  text-align: center;
  color: #fff;
}

.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  max-width: 680px;
  margin: 0 auto 28px;
  line-height: 1.25;
}

/* ── Footer ── */
.site-footer {
  background: var(--color-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 64px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
}

.site-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.site-footer-logo {
  height: 48px;
  width: auto;
  border-radius: 0;
  filter: brightness(0) invert(1);
  left: 0;
  justify-content: flex-start;
}

.site-footer-tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  margin: 0;
  max-width: 280px;
}

.site-footer-social {
  display: flex;
  gap: 8px;
}

.site-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.site-footer-social a:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  text-decoration: none;
}

.site-footer-heading {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 16px;
}

.site-footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer-nav a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer-nav a:hover {
  color: #fff;
  text-decoration: none;
}

.site-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.site-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.site-footer-contact li svg {
  flex-shrink: 0;
  margin-top: 3px;
  opacity: 0.5;
}

.site-footer-contact a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer-contact a:hover {
  color: #fff;
  text-decoration: none;
}

.site-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}

.site-footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
  text-align: center;
}

/* ── Footer simplificado (páginas secundárias) ── */
.site-footer-simple {
  background: var(--color-dark);
  padding: 40px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.site-footer-simple .site-footer-logo {
  height: 40px;
  margin: 0 auto;
}

.site-footer-simple .site-footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
}

.site-footer-simple .site-footer-link {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer-simple .site-footer-link:hover {
  color: #fff;
  text-decoration: none;
}

.site-footer-simple p {
  margin: 0;
}

/* ── Scroll spy ── */
.scroll-spy {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}

.scroll-spy-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
}

.scroll-spy-item:hover {
  text-decoration: none;
}

/* hero escuro: branco */
.scroll-spy-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.3;
  transition: opacity 0.25s, transform 0.25s;
  flex-shrink: 0;
}

.scroll-spy-label {
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}

.scroll-spy-item:hover .scroll-spy-label,
.scroll-spy-item.active .scroll-spy-label {
  opacity: 1;
  transform: translateX(0);
}

.scroll-spy-item.active .scroll-spy-dot {
  opacity: 1;
  transform: scale(1.5);
}

.scroll-spy-item:hover .scroll-spy-dot {
  opacity: 0.7;
}

/* fora do hero — preto */
.scroll-spy:not(.on-hero) .scroll-spy-dot {
  background: #000;
  opacity: 0.2;
}

.scroll-spy:not(.on-hero) .scroll-spy-item.active .scroll-spy-dot {
  background: #000;
  opacity: 1;
}

.scroll-spy:not(.on-hero) .scroll-spy-item:hover .scroll-spy-dot {
  background: #000;
  opacity: 0.6;
}

.scroll-spy:not(.on-hero) .scroll-spy-label {
  color: #000;
}

.scroll-spy:not(.on-hero) .scroll-spy-item.active .scroll-spy-label,
.scroll-spy:not(.on-hero) .scroll-spy-item:hover .scroll-spy-label {
  color: #000;
}

@media (max-width: 991px) {
  .scroll-spy {
    display: none;
  }
}

/* ── Floating buttons ── */
.site-floating {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.site-whatsapp-btn {
  display: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.site-whatsapp-btn.visible {
  display: flex;
}

.site-whatsapp-btn:hover {
  transform: scale(1.1);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.site-scroll-top {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-mid);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.2s;
  cursor: pointer;
  border: none;
}

.site-scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.site-scroll-top:hover {
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}

/* ── Page header (inner pages) ── */
.page-header {
  background: var(--gradient);
  padding: calc(var(--navbar-h) + 52px) 0 60px;
  color: #fff;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
}

.page-header p {
  font-size: 1.05rem;
  opacity: 0.88;
  max-width: 520px;
  margin: 0 auto;
}

/* ── Info cards (quem somos) ── */
.info-card {
  background: var(--color-light);
  border-radius: 1rem;
  padding: 24px;
  height: 100%;
}

.info-card-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.info-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-blue);
  margin-bottom: 8px;
}

.info-card-text {
  font-size: 1rem;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

/* ── Quote highlight ── */
.highlight-box {
  background: var(--gradient);
  border-radius: var(--radius);
  padding: 36px;
  margin: 40px 0;
  text-align: center;
}

.highlight-box p {
  color: #fff;
  margin: 0;
  line-height: 1.65;
}

.highlight-box .highlight-main {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.highlight-box .highlight-sub {
  font-size: 0.975rem;
  opacity: 0.88;
}

/* ── Page content prose ── */
.prose p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 24px;
}

.prose-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

/* ── Nav overlay ── */
.site-nav-overlay {
  display: none;
}

/* ── Menu social (inside drawer) ── */
.site-nav-menu-social {
  display: none;
}

/* ── Menu logo (inside drawer) ── */
.site-nav-menu-logo {
  display: none;
}

/* ── Drawer close button ── */
.site-nav-drawer-close {
  display: none;
}

/* ── Section links (inside drawer) ── */
.site-nav-sections {
  display: none;
}

/* ── Hamburger toggle button ── */
.site-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
  position: absolute;
  right: 12px;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.site-nav.scrolled .nav-toggle-bar {
  background: var(--color-dark);
}

.site-nav-toggle.open {
  visibility: hidden;
  pointer-events: none;
}

.site-nav-toggle.open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-nav-toggle.open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-nav-toggle.open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Responsive ── */
@media (max-width: 767px) {

  /* Navbar mobile */
  .site-nav-toggle {
    display: flex;
    position: absolute;
    right: 12px;
    z-index: 1002;
  }

  /* Close button inside drawer — left edge, centered vertically, half outside */
  .site-nav-drawer-close {
    display: none;
    position: absolute;
    left: -20px;
    top: 50%;
    right: auto;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(180deg, #e8e8e8 0%, #c8c8c8 50%, #a8a8a8 100%);
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.35), 0 1px 2px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid #888;
    z-index: 1002;
  }

  .site-nav-drawer-close:active {
    background: linear-gradient(180deg, #b8b8b8 0%, #a0a0a0 50%, #909090 100%);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3), inset 0 1px 3px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid #888;
    transform: translateY(calc(-50% + 1px));
  }

  .site-nav-drawer-close .nav-toggle-bar {
    background: #444;
    width: 16px;
    height: 2px;
    border-radius: 2px;
  }

  .site-nav-drawer-close .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-nav-drawer-close .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .site-nav-drawer-close .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav-social {
    position: absolute;
    left: 16px;
  }

  .site-nav-social a {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .site-nav-inner {
    justify-content: center;
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-nav-logo {
    position: relative;
    z-index: 0;
  }

  .site-nav-logo img {
    height: 2.4rem;
  }

  /* Overlay */
  .site-nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(2, 22, 34, 0.6);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .site-nav-overlay.open {
    opacity: 1;
    pointer-events: auto;
  }

  /* Menu drawer */
  .site-nav-right {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: #021622;
    flex-direction: column;
    align-items: stretch;
    padding: 24px 24px 32px;
    gap: 8px;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.4);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1001;
  }

  .site-nav-right.open {
    transform: translateX(0);
  }

  .site-nav-right.open .site-nav-drawer-close {
    display: flex;
  }

  .site-nav-right .site-nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    padding: 14px 16px;
    border-radius: 8px;
  }

  .site-nav-right .site-nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
  }

  .site-nav-right .site-nav-cta {
    display: flex;
    color: #fff;
    background: var(--color-red);
    border: none;
    padding: 14px 16px;
    border-radius: 8px;
    margin-top: 8px;
    justify-content: center;
  }

  .site-nav-right .site-nav-cta:hover {
    opacity: 0.9;
    color: #fff;
  }

  /* Logo inside menu drawer */
  .site-nav-menu-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-nav-menu-logo img {
    height: 3rem;
    width: auto;
  }

  /* Section links in drawer */
  .site-nav-sections {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-nav-section-link {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
  }

  .site-nav-section-link:hover,
  .site-nav-section-link.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
  }

  /* Back link in drawer */
  .site-nav-right .site-nav-back {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    padding: 10px 16px;
    border-radius: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 4px;
  }

  .site-nav-right .site-nav-back:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
  }

  .site-nav-right .site-nav-back svg {
    stroke: rgba(255, 255, 255, 0.6);
  }

  /* Social icons inside menu drawer */
  .site-nav-menu-social {
    display: flex;
    gap: 10px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-nav-menu-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
  }

  .site-nav-menu-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
  }

  /* Hero mobile */
  .site-hero {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .site-hero-video {
    display: none;
  }

  .site-hero-bg {
    display: block !important;
    position: absolute !important;
    top: var(--navbar-h) !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    transform: translateX(-50%);
    overflow: visible;
    pointer-events: none;
    z-index: 0;
  }

  .site-hero-bg-img {
    width: 90% !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: center !important;
    opacity: 1 !important;
    margin: 0 auto;
    display: block;
  }

  .site-hero {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .site-hero-content {
    padding: calc(var(--navbar-h) + 32px) 24px 40px;
    text-align: center;
    order: 1;
    z-index: 1;
    min-height: calc(100dvh - var(--navbar-h));
  }

  .site-hero h1 {
    font-size: 1.85rem;
    margin-bottom: 32px;
  }

  .subheadline {
    font-size: 0.95rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    line-height: 1.7;
  }

  .bullets {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 48px;
    gap: 8px;
  }

  .bullets li {
    font-size: 0.95rem;
    margin-bottom: 0;
  }

  .btn-cta {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 1.05rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  /* Sections padding */
  .site-section,
  .site-section-alt,
  .site-section-dark {
    padding: 52px 0;
  }

  .stats-section {
    padding: 48px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .apoio-logo {
    height: 60px;
  }

  /* Challenge */
  .challenge-list {
    grid-template-columns: 1fr;
  }

  /* Proposta */
  .proposta-img-wrap {
    height: 320px;
  }

  .proposta-img {
    height: 400px;
  }

  /* Feature cards */
  .feature-card-img img {
    height: 200px;
  }

  /* FAQ */
  .faq-question {
    font-size: 0.925rem;
    padding: 16px 0;
  }

  .faq-answer {
    font-size: 0.9rem;
  }

  /* Footer */
  .site-footer {
    padding: 48px 0 0;
  }

  .site-footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .site-footer-brand {
    align-items: center;
  }

  .site-footer-logo {
    margin: 0 auto;
  }

  .site-footer-tagline {
    max-width: 100%;
  }

  .site-footer-social {
    justify-content: center;
  }

  .site-footer-contact li {
    justify-content: center;
  }

  /* Floating */
  .site-floating {
    right: 15px;
    bottom: 15px;
  }

  .site-whatsapp-btn {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
  }

  .site-scroll-top {
    width: 38px;
    height: 38px;
  }

  /* Hero social */
  .site-hero-social {
    justify-content: flex-start;
  }

  /* Prose */
  .prose-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .prose-actions .btn-cta,
  .prose-actions .btn-outline {
    justify-content: center;
  }

  /* Buttons full width */
  .btn-outline,
  .btn-outline-light {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* Page header */
  .page-header {
    padding: calc(var(--navbar-h) + 36px) 0 44px;
  }

  .page-header h1 {
    font-size: 1.6rem;
  }

  /* Highlight box */
  .highlight-box {
    padding: 24px 20px;
  }
}

/* ── Tablet tweaks ── */
@media (min-width: 768px) and (max-width: 991px) {
  .site-nav-toggle {
    display: flex;
  }

  .site-nav-social {
    position: absolute;
    left: 16px;
  }

  .site-nav-social a {
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
  }

  .site-nav-inner {
    justify-content: center;
  }

  /* Overlay */
  .site-nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(2, 22, 34, 0.6);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .site-nav-overlay.open {
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav-right {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    height: 100dvh;
    background: #021622;
    flex-direction: column;
    align-items: stretch;
    padding: 10px 28px 32px;
    gap: 8px;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.4);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1001;
  }

  .site-nav-right.open {
    transform: translateX(0);
  }

  .site-nav-right.open .site-nav-drawer-close {
    display: flex;
  }

  .site-nav-drawer-close {
    display: none;
    position: absolute;
    left: -20px;
    top: 50%;
    right: auto;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(180deg, #e8e8e8 0%, #c8c8c8 50%, #a8a8a8 100%);
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.35), 0 1px 2px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid #888;
    z-index: 1002;
  }

  .site-nav-drawer-close:active {
    background: linear-gradient(180deg, #b8b8b8 0%, #a0a0a0 50%, #909090 100%);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3), inset 0 1px 3px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid #888;
    transform: translateY(calc(-50% + 1px));
  }

  .site-nav-drawer-close .nav-toggle-bar {
    background: #444;
    width: 16px;
    height: 2px;
    border-radius: 2px;
  }

  .site-nav-drawer-close .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-nav-drawer-close .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .site-nav-drawer-close .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav-right .site-nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    padding: 14px 16px;
    border-radius: 8px;
  }

  .site-nav-right .site-nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
  }

  .site-nav-right .site-nav-cta {
    color: #fff;
    background: var(--color-red);
    border: none;
    padding: 14px 16px;
    border-radius: 8px;
    margin-top: 8px;
    justify-content: center;
  }

  .site-nav-menu-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-nav-menu-logo img {
    height: 3rem;
    width: auto;
  }

  .site-nav-sections {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-nav-section-link {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
  }

  .site-nav-section-link:hover,
  .site-nav-section-link.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
  }

  .site-nav-right .site-nav-back {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    padding: 10px 16px;
    border-radius: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 4px;
  }

  .site-nav-right .site-nav-back:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
  }

  .site-nav-right .site-nav-back svg {
    stroke: rgba(255, 255, 255, 0.6);
  }

  .site-nav-menu-social {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-nav-menu-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
  }

  .site-nav-menu-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
  }

  .site-section,
  .site-section-alt,
  .site-section-dark {
    padding: 64px 0;
  }

  .proposta-img-wrap {
    height: 400px;
  }

  .proposta-img {
    height: 500px;
  }
}

/* ============================================================
   BLOG — Listagem de artigos
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 0;
}

.blog-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
  text-decoration: none;
  color: inherit;
}

.blog-card-gradient {
  height: 6px;
  background: var(--gradient);
  flex-shrink: 0;
}

.blog-card-body {
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-mid);
  background: rgba(50, 74, 139, 0.08);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
  align-self: flex-start;
}

.blog-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.35;
  margin: 0 0 12px;
}

.blog-card-excerpt {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-top: 1px solid #f0f0f0;
}

.blog-card-meta {
  font-size: 0.78rem;
  color: #999;
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-card-arrow {
  display: flex;
  align-items: center;
  color: var(--color-mid);
  font-size: 0.82rem;
  font-weight: 600;
  gap: 4px;
  transition: gap 0.2s;
}

.blog-card:hover .blog-card-arrow {
  gap: 8px;
}

/* ============================================================
   BLOG — Artigo individual
   ============================================================ */
.article-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.article-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--color-mid);
  padding: 5px 12px;
  border-radius: 4px;
}

.article-tag--version {
  background: transparent;
  color: var(--color-mid);
  border: 1.5px solid var(--color-mid);
  letter-spacing: 0.08em;
}

.article-read-time {
  font-size: 0.82rem;
  color: #999;
  display: flex;
  align-items: center;
  gap: 5px;
}

.article-body h2 {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--color-dark);
  margin: 48px 0 16px;
  line-height: 1.3;
}

.article-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-blue);
  margin: 36px 0 12px;
  line-height: 1.35;
}

.article-body p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.85;
  margin: 0 0 24px;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-figure {
  margin: 36px 0;
  text-align: center;
}

.article-figure img {
  width: 100%;
  max-width: 760px;
  height: auto;
  border-radius: 10px;
  border: 1px solid #e2e6ea;
  display: block;
  margin: 0 auto;
}

.article-figure figcaption {
  margin-top: 10px;
  font-size: 0.82rem;
  color: #7a8599;
  font-style: italic;
}

.article-cta-box {
  background: var(--color-light);
  border-left: 4px solid var(--color-mid);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 28px 32px;
  margin: 40px 0;
  text-align: center;
}

.article-cta-box p {
  font-size: 0.98rem;
  color: #555;
  line-height: 1.7;
  margin: 0 0 20px;
  font-style: italic;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-mid);
  text-decoration: none;
  padding: 10px 0;
  margin-bottom: 8px;
  transition: gap 0.2s, color 0.2s;
}

.article-back:hover {
  gap: 10px;
  color: var(--color-dark);
  text-decoration: none;
}

.article-share {
  border-top: 1px solid #eee;
  padding-top: 32px;
  margin-top: 48px;
  text-align: center;
}

.article-share-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #aaa;
  margin: 0 0 14px;
}

.article-share-links {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.article-share-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-light);
  color: #555;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.article-share-link:hover {
  background: var(--color-mid);
  color: #fff;
  text-decoration: none;
}

/* ── Blog responsive ── */
@media (max-width: 991px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 767px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-card-title {
    font-size: 1.05rem;
  }

  .article-container {
    padding: 36px 20px 60px;
  }

  .article-body h2 {
    font-size: 1.25rem;
    margin-top: 36px;
  }

  .article-body h3 {
    font-size: 1.05rem;
  }

  .article-body p {
    font-size: 0.98rem;
  }

  .article-cta-box {
    padding: 20px;
  }
}