/* =========================================
   NOTURNO CARIOCA — Start Corretora
   Design System v1.0
   Arquivo compartilhado — não editar por página
========================================= */

:root {
  --bg:          #04091C;
  --bg2:         #070E26;
  --bg3:         #0B1535;
  --bg4:         #111D45;
  --primary:     #00C853;
  --primary-dk:  #009940;
  --primary-glow: rgba(0,200,83,.10);
  --primary-rim:  rgba(0,200,83,.30);
  --primary-rim2: rgba(0,200,83,.08);
  --text:        #EDF1FF;
  --text-mid:    #8B97BE;
  --text-dim:    #4A5680;
  --border:      #141F42;
  --border-md:   #1C2B55;
  --gold:        #C9A84C;
  --gold-bg:     rgba(201,168,76,.10);
  --r:           8px;
  --r-lg:        14px;
  --glow-card:   0 0 40px rgba(0,200,83,.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .018;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 24px;
  border-radius: var(--r);
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .3px;
  cursor: pointer;
  border: none;
  transition: all .2s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
}
.btn-green {
  background: var(--primary);
  color: #030810;
}
.btn-green:hover {
  background: #00E676;
  box-shadow: 0 0 28px rgba(0,200,83,.35);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--text-mid);
  border: 1px solid var(--border-md);
}
.btn-outline:hover {
  color: var(--text);
  border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.04);
}
.btn-lg { padding: 15px 32px; font-size: 15px; border-radius: 10px; }

/* ============================================
   LABELS / BADGES
============================================ */
.label {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.label-vida       { background: rgba(0,200,83,.12);   color: var(--primary); }
.label-auto       { background: rgba(64,149,255,.12);  color: #4E9FFF; }
.label-saude      { background: rgba(201,168,76,.12);  color: var(--gold); }
.label-residencial{ background: rgba(224,120,68,.12);  color: #E07844; }
.label-empresarial{ background: rgba(180,100,255,.12); color: #B464FF; }

/* ============================================
   EYEBROW / SECTION TITLE
============================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--primary);
  flex-shrink: 0;
}

.sec-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.12;
  letter-spacing: -.5px;
  color: var(--text);
}
.sec-title em { font-style: italic; color: var(--primary); }

/* ============================================
   NAVIGATION
============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 68px;
  display: flex;
  align-items: center;
  padding: 0 28px;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  background: rgba(4,9,28,.55);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(4,9,28,.92);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 48px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  flex: 1;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-end {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: rgba(4,9,28,.98);
  backdrop-filter: blur(28px);
  z-index: 190;
  flex-direction: column;
  padding: 48px 32px;
  gap: 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'DM Serif Display', serif;
  font-size: 30px;
  color: var(--text-mid);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--primary); }
.mobile-nav .btn-green { margin-top: 32px; max-width: 260px; justify-content: center; }

/* ============================================
   TICKER
============================================ */
.ticker {
  position: relative;
  top: 68px;
  height: 38px;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ticker-pill {
  flex-shrink: 0;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--border);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--bg2);
  position: relative;
  z-index: 2;
}
.ticker-scroll { overflow: hidden; flex: 1; }
.ticker-track {
  display: flex;
  animation: scroll-ticker 45s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-mid);
  padding: 0 32px;
  gap: 8px;
}
.ticker-item::after {
  content: '◆';
  font-size: 6px;
  color: var(--primary);
  opacity: .4;
  margin-left: 32px;
}
@keyframes scroll-ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   HERO
============================================ */
.hero {
  min-height: 100vh;
  padding-top: calc(68px + 38px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -8%;
  width: 55%;
  height: 85%;
  background: radial-gradient(ellipse, rgba(0,200,83,.055) 0%, transparent 68%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border-md) 30%, var(--border-md) 70%, transparent 100%);
}
.hero-ghost {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-52%);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(160px, 20vw, 300px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,200,83,.05);
  line-height: 1;
  letter-spacing: -8px;
  user-select: none;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 88px 0 96px;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-left .eyebrow { margin-bottom: 22px; }
.hero-h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  line-height: 1.07;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 10px;
}
.hero-h1 em { font-style: italic; color: var(--primary); }
.hero-kicker {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.3px;
  color: var(--text-mid);
  line-height: 1;
  margin-bottom: 28px;
}
.hero-desc {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.72;
  max-width: 460px;
  margin-bottom: 44px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Hero cards */
.hcard-main {
  background: var(--bg2);
  border: 1px solid var(--border-md);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.hcard-main:hover {
  transform: translateY(-5px);
  box-shadow: var(--glow-card);
  border-color: rgba(0,200,83,.18);
}
.hcard-img {
  height: 320px;
  background: linear-gradient(135deg, #0A1330 0%, #0F1D42 60%, #08142A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hcard-img-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,200,83,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,83,.035) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hcard-img-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0,200,83,.08);
  border: 1px solid rgba(0,200,83,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  position: relative;
  z-index: 1;
}
.hcard-body { padding: 24px 26px; }
.hcard-body h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  line-height: 1.3;
  color: var(--text);
  margin: 10px 0 8px;
}
.hcard-body p {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 18px;
}
.card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--text-dim);
}
.card-meta-sep {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--text-dim);
}
.hcard-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hcard-mini {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.hcard-mini:hover {
  background: var(--bg3);
  border-color: var(--border-md);
}
.hcard-mini-ico {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: var(--primary-glow);
  border: 1px solid var(--primary-rim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.hcard-mini h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 14.5px;
  color: var(--text);
  margin-bottom: 3px;
}
.hcard-mini p {
  font-size: 12.5px;
  color: var(--text-mid);
  line-height: 1.4;
}

/* ============================================
   STATS BAR
============================================ */
.stats-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 44px 0;
}
.stat {
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.stat + .stat::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  height: 44px; width: 1px;
  background: var(--border);
}
.stat-n {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-l {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-mid);
}

/* ============================================
   SERVICES
============================================ */
.services { padding: 88px 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 52px;
}
.svc-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 20px 26px;
  text-align: center;
  cursor: pointer;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
  display: block;
  color: inherit;
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--primary);
  transition: width .3s;
}
.svc-card:hover {
  background: var(--bg3);
  border-color: var(--border-md);
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
}
.svc-card:hover::after { width: 100%; }
.svc-ico {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--primary-glow);
  border: 1px solid var(--primary-rim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 18px;
  transition: box-shadow .3s;
}
.svc-card:hover .svc-ico { box-shadow: 0 0 22px rgba(0,200,83,.22); }
.svc-name {
  font-family: 'DM Serif Display', serif;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 7px;
}
.svc-desc {
  font-size: 12.5px;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ============================================
   BLOG / ARTICLES (listagem)
============================================ */
.blog { padding: 88px 0; }
.blog-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  gap: 24px;
}
.filter-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filt {
  padding: 7px 16px;
  border-radius: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-mid);
  transition: all .2s;
}
.filt:hover, .filt.on {
  background: var(--primary-glow);
  border-color: var(--primary-rim);
  color: var(--primary);
}
.blog-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 18px;
}
.pcard {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.pcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(0,0,0,.38);
  border-color: var(--border-md);
}
.pcard-feat {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
}
.pcard-feat .pcard-body { flex: 1; }
.pcard-img {
  height: 190px;
  background: linear-gradient(135deg, #0A1330, #0F1D42);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  font-size: 28px;
}
.pcard-feat .pcard-img { flex-shrink: 0; height: 260px; }
.pcard-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(4,9,28,.65) 100%);
}
.pcard-img-icon { position: relative; z-index: 1; }
.pcard-body { padding: 22px 24px; }
.pcard-feat .pcard-body { padding: 26px 28px; }
.pcard-body .label { margin-bottom: 12px; }
.pcard-title {
  font-family: 'DM Serif Display', serif;
  font-size: 16.5px;
  line-height: 1.32;
  color: var(--text);
  margin-bottom: 9px;
}
.pcard-feat .pcard-title { font-size: 24px; margin-bottom: 13px; }
.pcard-exc {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 16px;
}
.pcard-feat .pcard-exc { font-size: 15.5px; }
.blog-more {
  text-align: center;
  margin-top: 48px;
}

/* ============================================
   CTA SECTION
============================================ */
.cta-sec {
  padding: 108px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cta-sec::before {
  content: '';
  position: absolute;
  top: -40%; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(ellipse, rgba(0,200,83,.07) 0%, transparent 65%);
  pointer-events: none;
}
.cta-body {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}
.cta-body .eyebrow { justify-content: center; }
.cta-body .eyebrow::before { display: none; }
.cta-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.13;
  letter-spacing: -.5px;
  margin-bottom: 18px;
}
.cta-title em { font-style: italic; color: var(--primary); }
.cta-desc {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.72;
  margin-bottom: 44px;
}
.cta-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.trust-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--text-mid);
}
.trust-item svg { flex-shrink: 0; }

/* ============================================
   FOOTER
============================================ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 72px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
.f-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 22px;
}
.f-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.f-contact-item {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: var(--text-mid);
  align-items: flex-start;
}
.f-contact-ico { color: var(--primary); flex-shrink: 0; margin-top: 1px; }
.f-col-head {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
}
.f-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.f-links a {
  font-size: 14px;
  color: var(--text-mid);
  transition: color .2s;
}
.f-links a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.f-copy {
  font-size: 13px;
  color: var(--text-dim);
}

/* ============================================
   WHATSAPP FLOAT
============================================ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 500;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.42);
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover {
  transform: scale(1.09);
  box-shadow: 0 6px 30px rgba(37,211,102,.55);
}
.wa-float::before {
  content: '';
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.2);
  animation: wa-pulse 2.6s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: .65; }
  100% { transform: scale(1.5); opacity: 0;   }
}

/* ============================================
   ANIMATIONS
============================================ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim {
  opacity: 0;
  animation: fade-up .75s cubic-bezier(.16,1,.3,1) forwards;
  animation-play-state: paused;
}
.anim.visible { animation-play-state: running; }
.d1 { animation-delay: .08s; }
.d2 { animation-delay: .18s; }
.d3 { animation-delay: .28s; }
.d4 { animation-delay: .40s; }
.d5 { animation-delay: .52s; }
.d6 { animation-delay: .64s; }

/* ============================================
   SLIDERS
============================================ */
.hcard-slider { position: relative; overflow: hidden; cursor: default; }
.hcard-slider.hcard-main:hover { transform: none; box-shadow: none; border-color: var(--border-md); }
.hcard-slider .hslider-track {
  display: flex;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.hcard-slider .hslide { flex: 0 0 100%; cursor: pointer; }

.pcard-slider { position: relative; overflow: hidden; cursor: default; }
.pcard-slider .slider-track {
  display: flex;
  height: 100%;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.pcard-slider .slide {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.pcard-slider .slide .pcard-body { flex: 1; }
.slider-dots {
  position: absolute;
  bottom: 18px;
  right: 22px;
  display: flex;
  gap: 6px;
  z-index: 10;
}
.sdot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all .3s;
}
.sdot.active { background: var(--primary); width: 20px; border-radius: 4px; }
.sarr {
  position: absolute;
  top: 142px;
  background: rgba(4,9,28,.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.75);
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  font-size: 20px;
  line-height: 1;
  transition: all .2s;
}
.sarr:hover { background: rgba(0,200,83,.2); border-color: var(--primary); color: var(--primary); }
.sarr-prev { left: 12px; }
.sarr-next { right: 12px; }

/* ============================================
   ARTICLE (páginas de blog)
============================================ */
.article-header {
  padding-top: calc(68px + 38px + 72px);
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.article-header::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 50%; height: 90%;
  background: radial-gradient(ellipse, rgba(0,200,83,.045) 0%, transparent 68%);
  pointer-events: none;
}
.article-header .container { position: relative; z-index: 1; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 28px;
}
.breadcrumb a { color: var(--text-dim); transition: color .2s; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb-sep { color: var(--border-md); }

.article-h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -.8px;
  color: var(--text);
  max-width: 760px;
  margin-bottom: 20px;
}
.article-h1 em { font-style: italic; color: var(--primary); }
.article-desc {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.72;
  max-width: 620px;
  margin-bottom: 32px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.article-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
}
.article-meta-item svg { color: var(--primary); }

.article-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
  padding: 72px 0 80px;
}
.article-content h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  line-height: 1.18;
  letter-spacing: -.4px;
  color: var(--text);
  margin: 52px 0 18px;
  padding-top: 4px;
}
.article-content h2:first-child { margin-top: 0; }
.article-content h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin: 28px 0 12px;
}
.article-content p {
  font-size: 16.5px;
  color: var(--text-mid);
  line-height: 1.78;
  margin-bottom: 18px;
}
.article-content strong { color: var(--text); font-weight: 600; }
.article-content ul,
.article-content ol { margin: 0 0 20px 24px; }
.article-content li {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.72;
  margin-bottom: 10px;
}
.article-content li strong { color: var(--text); }

.sumario {
  background: var(--bg2);
  border: 1px solid var(--border-md);
  border-left: 3px solid var(--primary);
  border-radius: var(--r);
  padding: 24px 28px;
  margin: 32px 0 40px;
}
.sumario-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}
.sumario ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.sumario li { margin: 0; }
.sumario a {
  font-size: 14px;
  color: var(--text-mid);
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sumario a::before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  opacity: .5;
}
.sumario a:hover { color: var(--primary); }

.stats-box {
  background: var(--bg2);
  border: 1px solid var(--border-md);
  border-left: 3px solid #4E9FFF;
  border-radius: var(--r);
  padding: 24px 28px;
  margin: 28px 0;
}
.stats-box p { font-size: 15px !important; color: var(--text-mid) !important; margin-bottom: 10px !important; }
.stats-box p:last-child { margin-bottom: 0 !important; }
.stats-box strong { color: var(--primary) !important; }

.faq-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px 28px;
  margin: 14px 0;
  transition: border-color .2s;
}
.faq-item:hover { border-color: var(--border-md); }
.faq-item h3 {
  margin-top: 0 !important;
  color: var(--text) !important;
  font-family: 'DM Serif Display', serif;
  font-size: 17px !important;
  font-weight: 400;
}
.faq-item p { margin-bottom: 0 !important; }

.cta-inline {
  background: var(--bg3);
  border: 1px solid var(--border-md);
  border-top: 2px solid var(--primary);
  border-radius: var(--r-lg);
  padding: 36px;
  text-align: center;
  margin: 48px 0;
}
.cta-inline h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem !important;
  margin: 0 0 12px !important;
  padding: 0 !important;
  letter-spacing: -.3px;
}
.cta-inline p { color: var(--text-mid); margin-bottom: 24px !important; }

.article-sidebar { position: sticky; top: 110px; }
.sidebar-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  margin-bottom: 20px;
}
.sidebar-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}
.sidebar-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.sidebar-links a {
  font-size: 13.5px;
  color: var(--text-mid);
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}
.sidebar-links a:hover { color: var(--primary); }
.sidebar-links-ico {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: var(--primary-glow);
  border: 1px solid var(--primary-rim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .pcard-feat { grid-column: 1 / -1; grid-row: auto; flex-direction: row; }
  .pcard-feat .pcard-img { width: 280px; height: auto; flex-shrink: 0; }
}

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 52px; }
  .hero-ghost { display: none; }
  .hero-inner { padding: 56px 0 64px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .stat + .stat::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-end .btn-outline { display: none; }
  .nav-burger { display: flex; }
  .article-wrap { grid-template-columns: 1fr; }
  .article-sidebar { display: none; }
  .sarr { top: 100px; }
}

@media (max-width: 768px) {
  html, body { overflow-x: hidden; max-width: 100%; }
  .container { padding: 0 20px; }
  .nav { padding: 0 20px; }
  .mobile-nav { padding: 40px 20px; }
  .mobile-nav a { font-size: 26px; word-break: break-word; }
  .hero-h1 { font-size: clamp(28px, 9vw, 44px); line-height: 1.18; letter-spacing: -0.5px; }
  .hero-kicker { font-size: clamp(18px, 5.5vw, 26px); line-height: 1.15; margin-bottom: 20px; }
  .hero-desc { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-actions .btn { justify-content: center; }
  .hcard-row { grid-template-columns: 1fr; }
  .sec-title { font-size: clamp(22px, 7vw, 32px); line-height: 1.22; letter-spacing: -0.2px; }
  .blog-top { flex-direction: column; align-items: flex-start; gap: 16px; }
  .article-h1 { font-size: clamp(28px, 8vw, 40px); line-height: 1.15; }
  .cta-sec { padding: 72px 0; }
  .cta-title { font-size: clamp(22px, 7vw, 32px); line-height: 1.22; letter-spacing: -0.2px; }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .cta-btns .btn { justify-content: center; width: 100%; }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .pcard-feat { flex-direction: column; }
  .pcard-feat .pcard-img { width: 100%; height: 220px; }
  .blog-top { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions, .cta-btns { flex-direction: column; align-items: flex-start; }
  .cta-btns { align-items: center; }
  .nav-end .btn-green { display: none; }
  .article-meta { gap: 12px; }
}
