/* ============================================================
   GSC EXPERTISE — MAIN STYLESHEET
   Brand: #C01A27 | #17A2BB | #000000 | #FFFFFF
   Version: 1.0.0
============================================================ */

/* ── GOOGLE FONTS ─────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@300;400;500;600&family=Barlow+Semi+Condensed:wght@500;600&display=swap');

/* ── VARIABLES ────────────────────────── */
:root {
  --gsc-red:       #C01A27;
  --gsc-red-dark:  #950F1B;
  --gsc-red-light: #E01A27;
  --gsc-teal:      #17A2BB;
  --gsc-teal-dark: #128EA5;
  --gsc-black:     #0A0A0A;
  --gsc-slate:     #2C2C3A;
  --gsc-grey:      #5C5773;
  --gsc-silver:    #BDC3C7;
  --gsc-light:     #F4F5F7;
  --gsc-white:     #FFFFFF;
  --font-display:  'Barlow Condensed', sans-serif;
  --font-body:     'Barlow', sans-serif;
  --font-semi:     'Barlow Semi Condensed', sans-serif;
  --radius:        4px;
  --transition:    0.28s cubic-bezier(.4,0,.2,1);
  --shadow-sm:     0 2px 12px rgba(0,0,0,.06);
  --shadow-md:     0 8px 28px rgba(0,0,0,.1);
  --shadow-lg:     0 20px 48px rgba(0,0,0,.12);
}

/* ── RESET ────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--gsc-white);
  color: var(--gsc-black);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ── UTILITY ──────────────────────────── */
.container    { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container-sm { max-width: 860px;  margin: 0 auto; padding: 0 32px; }
.text-center  { text-align: center; }
.text-red     { color: var(--gsc-red); }
.text-teal    { color: var(--gsc-teal); }
.d-flex       { display: flex; }
.align-center { align-items: center; }
.gap-16       { gap: 16px; }
.mt-32        { margin-top: 32px; }
.mb-0         { margin-bottom: 0; }

.tag {
  display: inline-block;
  font-family: var(--font-semi);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 18px;
}
.tag--red   { background: var(--gsc-red);   color: #fff; }
.tag--teal  { background: var(--gsc-teal);  color: #fff; }
.tag--dark  { background: var(--gsc-black); color: #fff; }
.tag--ghost { border: 1.5px solid var(--gsc-red); color: var(--gsc-red); }

/* ── BUTTONS ──────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-semi);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn--primary { background: var(--gsc-red); color: #fff; }
.btn--primary:hover { background: var(--gsc-red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192,26,39,.35); }
.btn--teal    { background: var(--gsc-teal); color: #fff; }
.btn--teal:hover { background: var(--gsc-teal-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(23,162,187,.35); }
.btn--outline { background: transparent; color: var(--gsc-white); border: 2px solid rgba(255,255,255,.45); }
.btn--outline:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn--white   { background: #fff; color: var(--gsc-red); }
.btn--white:hover { background: #f5f5f5; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.btn--ghost   { background: transparent; color: var(--gsc-red); border: 2px solid var(--gsc-red); }
.btn--ghost:hover { background: var(--gsc-red); color: #fff; }

/* ── SECTION COMMONS ──────────────────── */
section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -.01em;
  color: var(--gsc-black);
  margin-bottom: 18px;
}
.section-header h2 span { color: var(--gsc-red); }
.section-header p { font-size: 16px; color: var(--gsc-grey); max-width: 560px; margin: 0 auto; line-height: 1.75; }
.section-divider { width: 52px; height: 4px; background: var(--gsc-red); margin: 20px auto 0; border-radius: 2px; }

/* ── TOP BAR ──────────────────────────── */
.gsc-topbar {
  background: var(--gsc-black);
  padding: 9px 0;
  font-size: 12.5px;
  color: var(--gsc-silver);
}
.gsc-topbar .container { display: flex; justify-content: space-between; align-items: center; }
.gsc-topbar a { color: var(--gsc-silver); text-decoration: none; transition: var(--transition); }
.gsc-topbar a:hover { color: var(--gsc-teal); }
.topbar-links, .topbar-contact { display: flex; gap: 24px; }

/* ── HEADER ───────────────────────────── */
#masthead {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--gsc-white);
  box-shadow: 0 2px 20px rgba(0,0,0,.1);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.logo-mark {
  width: 46px; height: 46px;
  background: var(--gsc-red);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  flex-shrink: 0;
}
.logo-mark::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 4px, rgba(255,255,255,.06) 4px, rgba(255,255,255,.06) 8px);
}
.logo-mark span { font-family: var(--font-display); font-size: 22px; font-weight: 900; color: #fff; position: relative; z-index: 1; }
.logo-text .name { display: block; font-family: var(--font-display); font-size: 20px; font-weight: 800; letter-spacing: .04em; color: var(--gsc-black); }
.logo-text .sub  { display: block; font-family: var(--font-semi); font-size: 10px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--gsc-grey); }

/* Main Nav */
.main-navigation ul { display: flex; align-items: center; gap: 4px; }
.main-navigation ul li { position: relative; }
.main-navigation ul li a {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 16px;
  font-family: var(--font-semi); font-size: 13.5px; font-weight: 600; letter-spacing: .04em;
  color: var(--gsc-black);
  border-radius: var(--radius);
  transition: var(--transition);
}
.main-navigation ul li a:hover { color: var(--gsc-red); background: rgba(192,26,39,.05); }
.main-navigation ul li ul {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 220px; background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-top: 3px solid var(--gsc-red);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: var(--transition); flex-direction: column; gap: 0;
}
.main-navigation ul li:hover > ul { opacity: 1; visibility: visible; transform: translateY(0); }
.main-navigation ul li ul li a { padding: 10px 20px; font-size: 13.5px; color: var(--gsc-slate); }
.main-navigation ul li ul li a:hover { color: var(--gsc-red); background: var(--gsc-light); padding-left: 26px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--gsc-black); border-radius: 2px; transition: var(--transition); }

/* ── HERO ─────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--gsc-black);
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0A0A0A 0%, #1a0508 50%, #0A0A0A 100%);
}
.hero-bg::before {
  content: '';
  position: absolute; top: -120px; right: -80px;
  width: 620px; height: 620px;
  background: var(--gsc-red);
  clip-path: polygon(40% 0%, 100% 0%, 100% 100%, 60% 100%);
  opacity: .12;
}
.hero-bg::after {
  content: '';
  position: absolute; bottom: -60px; left: -60px;
  width: 400px; height: 400px;
  border: 1.5px solid rgba(23,162,187,.18); border-radius: 50%;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-stripe { position: absolute; left: 0; top: 0; bottom: 0; width: 6px; background: linear-gradient(180deg, var(--gsc-red) 0%, var(--gsc-red-light) 100%); }
.hero-section .container {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  padding-top: 60px; padding-bottom: 60px;
}
.hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.hero-eyebrow-line { width: 40px; height: 2px; background: var(--gsc-red); }
.hero-eyebrow span { font-family: var(--font-semi); font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gsc-teal); }
.hero-section h1 { font-family: var(--font-display); font-size: clamp(42px, 5.5vw, 72px); font-weight: 900; line-height: .97; letter-spacing: -.01em; color: var(--gsc-white); margin-bottom: 28px; }
.hero-section h1 em { font-style: normal; color: var(--gsc-red); }
.hero-desc { font-size: 16px; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,.62); margin-bottom: 40px; max-width: 480px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 56px; border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); overflow: hidden; background: rgba(255,255,255,.05); }
.hero-stat { padding: 24px 20px; background: rgba(255,255,255,.03); border-right: 1px solid rgba(255,255,255,.07); }
.hero-stat:last-child { border-right: none; }
.hero-stat .num { font-family: var(--font-display); font-size: 38px; font-weight: 800; color: var(--gsc-white); line-height: 1; display: block; }
.hero-stat .num em { font-style: normal; color: var(--gsc-red); }
.hero-stat .lbl { font-family: var(--font-semi); font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-top: 6px; display: block; }
.hero-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 8px; padding: 28px; backdrop-filter: blur(12px); transition: var(--transition); margin-bottom: 16px; }
.hero-card:last-child { margin-bottom: 0; }
.hero-card:hover { background: rgba(255,255,255,.08); border-color: rgba(192,26,39,.4); transform: translateX(6px); }
.hero-card-icon { width: 44px; height: 44px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 14px; }
.hero-card-icon.red   { background: rgba(192,26,39,.18); }
.hero-card-icon.teal  { background: rgba(23,162,187,.18); }
.hero-card-icon.dark  { background: rgba(255,255,255,.08); }
.hero-card h3 { font-family: var(--font-semi); font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 6px; }
.hero-card p  { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.6; }

/* ── RIBBON ───────────────────────────── */
.gsc-ribbon { background: var(--gsc-red); padding: 18px 0; overflow: hidden; }
.ribbon-track { display: flex; gap: 64px; animation: ribbon-scroll 22s linear infinite; width: max-content; }
.ribbon-track span { font-family: var(--font-display); font-size: 14px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.8); white-space: nowrap; }
.ribbon-track span.dot { color: rgba(255,255,255,.35); font-size: 20px; line-height: 1; }
@keyframes ribbon-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── SERVICES ─────────────────────────── */
.services-section { background: var(--gsc-light); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--gsc-white); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); position: relative; }
.service-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--gsc-red); transform: scaleY(0); transform-origin: bottom; transition: transform .3s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleY(1); }
.service-card-top { padding: 32px 28px 24px; }
.service-icon { width: 56px; height: 56px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 20px; transition: var(--transition); }
.service-card:hover .service-icon { transform: scale(1.1) rotate(-4deg); }
.si-red  { background: #fdeaec; }
.si-teal { background: #e3f6f9; }
.si-dark { background: #f0f0f3; }
.service-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--gsc-black); margin-bottom: 10px; }
.service-card p  { font-size: 14px; color: var(--gsc-grey); line-height: 1.7; }
.service-card-footer { border-top: 1px solid var(--gsc-light); padding: 16px 28px; display: flex; align-items: center; justify-content: space-between; }
.service-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.stag { font-size: 10.5px; font-family: var(--font-semi); font-weight: 600; letter-spacing: .08em; padding: 3px 10px; border-radius: 20px; background: var(--gsc-light); color: var(--gsc-grey); }
.service-arrow { width: 32px; height: 32px; border-radius: 50%; background: var(--gsc-light); display: flex; align-items: center; justify-content: center; color: var(--gsc-grey); transition: var(--transition); cursor: pointer; flex-shrink: 0; }
.service-card:hover .service-arrow { background: var(--gsc-red); color: #fff; transform: translateX(4px); }

/* ── ABOUT ────────────────────────────── */
.about-section .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-img-wrap { width: 100%; aspect-ratio: 4/5; background: linear-gradient(135deg, var(--gsc-black) 0%, #1a0508 100%); border-radius: 8px; overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center; }
.about-img-wrap::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(-45deg, transparent 0px, transparent 8px, rgba(192,26,39,.04) 8px, rgba(192,26,39,.04) 16px); }
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-placeholder { font-family: var(--font-display); font-size: 120px; font-weight: 900; color: rgba(255,255,255,.08); z-index: 1; position: relative; }
.about-badge { position: absolute; bottom: -24px; right: -24px; background: var(--gsc-red); color: #fff; border-radius: 8px; padding: 24px; text-align: center; box-shadow: 0 16px 40px rgba(192,26,39,.35); }
.about-badge .num { font-family: var(--font-display); font-size: 42px; font-weight: 900; line-height: 1; display: block; }
.about-badge .lbl { font-family: var(--font-semi); font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; opacity: .8; margin-top: 4px; display: block; }
.about-teal-box { position: absolute; top: 32px; left: -28px; background: var(--gsc-teal); color: #fff; border-radius: 6px; padding: 16px 20px; box-shadow: 0 10px 28px rgba(23,162,187,.32); }
.about-teal-box .icon { font-size: 22px; margin-bottom: 6px; }
.about-teal-box .txt { font-family: var(--font-semi); font-size: 12px; font-weight: 600; line-height: 1.4; }
.about-content h2 { font-family: var(--font-display); font-size: clamp(30px, 3.5vw, 48px); font-weight: 900; line-height: 1.02; color: var(--gsc-black); margin-bottom: 24px; }
.about-content h2 span { color: var(--gsc-red); }
.about-content p { font-size: 15.5px; color: var(--gsc-grey); line-height: 1.8; margin-bottom: 20px; }
.pillar-list { margin: 32px 0; display: flex; flex-direction: column; gap: 16px; }
.pillar-item { display: flex; gap: 16px; align-items: flex-start; padding: 18px 20px; border-radius: 8px; border: 1px solid transparent; transition: var(--transition); }
.pillar-item:hover { background: var(--gsc-light); border-color: rgba(192,26,39,.15); }
.pillar-num { font-family: var(--font-display); font-size: 28px; font-weight: 900; color: var(--gsc-red); opacity: .25; line-height: 1; flex-shrink: 0; width: 36px; }
.pillar-text h4 { font-family: var(--font-semi); font-size: 15px; font-weight: 600; color: var(--gsc-black); margin-bottom: 4px; }
.pillar-text p { font-size: 13.5px; color: var(--gsc-grey); line-height: 1.6; margin: 0; }

/* ── IMPACT ───────────────────────────── */
.impact-section { background: var(--gsc-black); position: relative; overflow: hidden; }
.impact-section::before { content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 40%; background: linear-gradient(90deg, transparent, rgba(192,26,39,.06)); }
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: rgba(255,255,255,.06); border-radius: 8px; overflow: hidden; }
.impact-cell { background: rgba(255,255,255,.02); padding: 48px 32px; text-align: center; transition: var(--transition); }
.impact-cell:hover { background: rgba(192,26,39,.08); }
.impact-cell .big { font-family: var(--font-display); font-size: 56px; font-weight: 900; color: var(--gsc-white); line-height: 1; display: block; }
.impact-cell .big em { font-style: normal; color: var(--gsc-red); }
.impact-cell .lbl  { font-family: var(--font-semi); font-size: 12px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-top: 10px; display: block; }
.impact-cell .desc { font-size: 13px; color: rgba(255,255,255,.25); margin-top: 8px; line-height: 1.5; }

/* ── PROCESS ──────────────────────────── */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 40px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--gsc-red), var(--gsc-teal)); z-index: 0; }
.process-step { text-align: center; padding: 0 24px; position: relative; z-index: 1; }
.process-circle { width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 28px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 26px; font-weight: 900; }
.process-circle.red   { background: var(--gsc-red);   color: #fff; box-shadow: 0 8px 24px rgba(192,26,39,.35); }
.process-circle.teal  { background: var(--gsc-teal);  color: #fff; box-shadow: 0 8px 24px rgba(23,162,187,.35); }
.process-circle.dark  { background: var(--gsc-black); color: #fff; box-shadow: 0 8px 24px rgba(0,0,0,.25); }
.process-circle.light { background: var(--gsc-light); color: var(--gsc-red); border: 2px solid var(--gsc-red); }
.process-step h3 { font-family: var(--font-semi); font-size: 17px; font-weight: 600; color: var(--gsc-black); margin-bottom: 10px; }
.process-step p  { font-size: 13.5px; color: var(--gsc-grey); line-height: 1.65; }

/* ── TESTIMONIALS ─────────────────────── */
.testimonials-section { background: var(--gsc-light); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: var(--gsc-white); border-radius: 8px; padding: 32px; box-shadow: var(--shadow-sm); position: relative; transition: var(--transition); }
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testi-card::before { content: '"'; font-family: Georgia, serif; font-size: 80px; color: var(--gsc-red); opacity: .12; position: absolute; top: 12px; left: 24px; line-height: 1; }
.testi-stars { color: #F4B942; font-size: 14px; letter-spacing: 2px; margin-bottom: 18px; }
.testi-text { font-size: 14.5px; color: var(--gsc-grey); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 18px; font-weight: 700; color: #fff; flex-shrink: 0; }
.av-red  { background: var(--gsc-red); }
.av-teal { background: var(--gsc-teal); }
.av-dark { background: var(--gsc-black); }
.testi-name { font-family: var(--font-semi); font-size: 14px; font-weight: 600; color: var(--gsc-black); }
.testi-role { font-size: 12px; color: var(--gsc-grey); }

/* ── CTA BANNER ───────────────────────── */
.cta-banner { background: linear-gradient(135deg, var(--gsc-red) 0%, var(--gsc-red-dark) 100%); padding: 80px 0; position: relative; overflow: hidden; }
.cta-banner::before { content: 'GSC'; position: absolute; right: -40px; top: 50%; transform: translateY(-50%); font-family: var(--font-display); font-size: 260px; font-weight: 900; color: rgba(255,255,255,.04); letter-spacing: -.04em; pointer-events: none; }
.cta-banner .container { display: flex; align-items: center; justify-content: space-between; gap: 48px; position: relative; z-index: 1; }
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 48px); font-weight: 900; color: #fff; line-height: 1.05; max-width: 520px; }
.cta-banner p  { font-size: 15px; color: rgba(255,255,255,.7); margin-top: 12px; max-width: 460px; }
.cta-actions   { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }

/* ── BLOG ─────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { border-radius: 8px; overflow: hidden; border: 1px solid rgba(0,0,0,.07); transition: var(--transition); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.blog-thumb { height: 200px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-thumb img { transform: scale(1.06); }
.blog-thumb-placeholder { font-family: var(--font-display); font-size: 48px; font-weight: 900; opacity: .12; color: #fff; }
.bt-red  { background: linear-gradient(135deg, var(--gsc-red) 0%, var(--gsc-red-dark) 100%); }
.bt-teal { background: linear-gradient(135deg, var(--gsc-teal) 0%, var(--gsc-teal-dark) 100%); }
.bt-dark { background: linear-gradient(135deg, var(--gsc-black) 0%, var(--gsc-slate) 100%); }
.blog-cat { position: absolute; bottom: 14px; left: 14px; z-index: 2; }
.blog-body { padding: 24px; }
.blog-meta { font-size: 11.5px; color: var(--gsc-silver); margin-bottom: 10px; }
.blog-body h3 { font-family: var(--font-semi); font-size: 17px; font-weight: 600; color: var(--gsc-black); line-height: 1.45; margin-bottom: 10px; }
.blog-body h3 a:hover { color: var(--gsc-red); }
.blog-body p { font-size: 13.5px; color: var(--gsc-grey); line-height: 1.65; }
.blog-footer { padding: 16px 24px; border-top: 1px solid var(--gsc-light); display: flex; align-items: center; justify-content: space-between; }
.blog-read { font-family: var(--font-semi); font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gsc-red); display: flex; align-items: center; gap: 6px; }
.blog-read:hover { gap: 10px; }

/* ── SIDEBAR ──────────────────────────── */
.content-sidebar-wrap { display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: start; }
.widget { margin-bottom: 40px; }
.widget-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--gsc-black); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 3px solid var(--gsc-red); }
.widget ul li { padding: 10px 0; border-bottom: 1px solid var(--gsc-light); }
.widget ul li a { font-size: 14px; color: var(--gsc-grey); display: flex; justify-content: space-between; }
.widget ul li a:hover { color: var(--gsc-red); }

/* ── SINGLE POST ──────────────────────── */
.single-post-header { background: var(--gsc-black); padding: 80px 0 60px; }
.single-post-header h1 { font-family: var(--font-display); font-size: clamp(30px, 4vw, 52px); font-weight: 900; color: #fff; line-height: 1.1; max-width: 760px; }
.post-meta { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 20px; }
.post-meta span { font-size: 13px; color: rgba(255,255,255,.5); display: flex; align-items: center; gap: 6px; }
.post-content { padding: 60px 0; }
.post-content h2 { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--gsc-black); margin: 40px 0 16px; }
.post-content h3 { font-family: var(--font-semi); font-size: 22px; font-weight: 600; color: var(--gsc-black); margin: 32px 0 14px; }
.post-content p  { font-size: 16px; line-height: 1.8; color: var(--gsc-grey); margin-bottom: 20px; }
.post-content ul, .post-content ol { margin: 20px 0 20px 24px; }
.post-content li { font-size: 16px; line-height: 1.8; color: var(--gsc-grey); margin-bottom: 8px; }
.post-content blockquote { border-left: 4px solid var(--gsc-red); padding: 20px 28px; background: var(--gsc-light); margin: 32px 0; border-radius: 0 8px 8px 0; }
.post-content blockquote p { font-size: 18px; font-style: italic; color: var(--gsc-black); margin: 0; }

/* ── FOOTER ───────────────────────────── */
#colophon { background: var(--gsc-black); padding-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 64px; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.4); line-height: 1.8; margin: 20px 0 28px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; border-radius: 6px; background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.4); font-size: 13px; font-family: var(--font-semi); font-weight: 600; transition: var(--transition); }
.social-btn:hover { background: var(--gsc-red); color: #fff; }
.footer-col h4 { font-family: var(--font-semi); font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.55); transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-col ul li a:hover { color: var(--gsc-teal); padding-left: 6px; }
.footer-bottom { padding: 24px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,.25); }
.footer-bottom a { color: var(--gsc-teal); }
.footer-contact-info { margin-top: 24px; }
.fci { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; }
.fci-icon { width: 28px; height: 28px; border-radius: 4px; background: rgba(192,26,39,.15); display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; }
.fci-text { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.5; }

/* ── WA FLOAT ─────────────────────────── */
.wa-float { position: fixed; bottom: 28px; right: 28px; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(37,211,102,.4); z-index: 999; font-size: 26px; transition: var(--transition); }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(37,211,102,.5); }

/* ── ANIMATIONS ───────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp .7s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .22s; }
.delay-3 { animation-delay: .34s; }
.delay-4 { animation-delay: .46s; }

/* ── RESPONSIVE ───────────────────────── */
@media (max-width: 1024px) {
  .services-grid, .testi-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 48px; }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .content-sidebar-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .gsc-topbar .container { flex-direction: column; gap: 8px; font-size: 11px; }
  .main-navigation { display: none; }
  .main-navigation.active { display: block; position: absolute; top: 72px; left: 0; right: 0; background: #fff; box-shadow: 0 16px 40px rgba(0,0,0,.12); padding: 16px 0; z-index: 999; }
  .main-navigation ul { flex-direction: column; gap: 0; }
  .main-navigation ul li a { padding: 12px 24px; }
  .main-navigation ul li ul { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; border-left: 3px solid var(--gsc-red); margin: 0 0 0 24px; background: var(--gsc-light); }
  .hamburger { display: flex; }
  .hero-section .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .services-grid, .testi-grid, .blog-grid { grid-template-columns: 1fr; }
  .about-section .container { grid-template-columns: 1fr; gap: 48px; }
  .about-badge { right: 0; bottom: -16px; }
  .about-teal-box { display: none; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .cta-banner .container { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  section { padding: 72px 0; }
  .container { padding: 0 20px; }
}

/* ── WOOCOMMERCE BASE (if needed) ─────── */
.woocommerce-message, .woocommerce-info { padding: 16px 20px; border-radius: var(--radius); margin-bottom: 20px; border-left: 4px solid var(--gsc-teal); background: #e3f6f9; }
.woocommerce-error { border-left-color: var(--gsc-red); background: #fdeaec; }

/* ============================================================
   GSC — GERENCIE SUA CAMPANHA
   Seção de destaque eleitoral
============================================================ */

/* ── HERO ELEITORAL ─────────────────── */
.eleitoral-hero {
  background: var(--gsc-black);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.eleitoral-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(192,26,39,.18) 0%, transparent 60%),
    repeating-linear-gradient(
      -55deg,
      transparent 0px, transparent 10px,
      rgba(192,26,39,.03) 10px, rgba(192,26,39,.03) 20px
    );
}
.eleitoral-hero::after {
  content: '2026';
  position: absolute;
  right: -30px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 280px;
  font-weight: 900;
  color: rgba(255,255,255,.03);
  pointer-events: none;
  letter-spacing: -.04em;
}
.eleitoral-hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}
.eleitoral-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(192,26,39,.15);
  border: 1px solid rgba(192,26,39,.35);
  border-radius: 100px;
  padding: 8px 18px;
  margin-bottom: 28px;
}
.eleitoral-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gsc-red);
  box-shadow: 0 0 0 3px rgba(192,26,39,.25);
  animation: pulse 2s ease-in-out infinite;
}
.eleitoral-badge span {
  font-family: var(--font-semi);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(192,26,39,.25); }
  50%       { box-shadow: 0 0 0 6px rgba(192,26,39,.08); }
}
.eleitoral-hero h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 900;
  line-height: .97;
  color: var(--gsc-white);
  margin-bottom: 10px;
}
.eleitoral-hero h2 em {
  font-style: normal;
  color: var(--gsc-red);
}
.eleitoral-platform-name {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700;
  color: var(--gsc-teal);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
}
.eleitoral-hero p {
  font-size: 15.5px;
  color: rgba(255,255,255,.58);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 36px;
}
.eleitoral-hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.eleitoral-hero-cta .note {
  font-size: 12px;
  color: rgba(255,255,255,.3);
  font-family: var(--font-semi);
}

/* dores / problemas */
.eleitoral-problems {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.eleitoral-problem {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 16px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: var(--transition);
}
.eleitoral-problem:hover {
  background: rgba(192,26,39,.08);
  border-color: rgba(192,26,39,.25);
}
.eleitoral-problem .ep-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.eleitoral-problem p {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  line-height: 1.55;
  margin: 0;
}

/* ── O QUE INCLUI ────────────────────── */
.eleitoral-inclui {
  background: var(--gsc-light);
  padding: 80px 0;
}
.eleitoral-inclui-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.inclui-card {
  background: var(--gsc-white);
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid transparent;
  transition: var(--transition);
  position: relative;
}
.inclui-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--gsc-red);
}
.inclui-card .ic-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 14px;
}
.inclui-card h4 {
  font-family: var(--font-semi);
  font-size: 14px;
  font-weight: 600;
  color: var(--gsc-black);
  line-height: 1.4;
  margin-bottom: 8px;
}
.inclui-card p {
  font-size: 12.5px;
  color: var(--gsc-grey);
  line-height: 1.6;
}

/* ── PLANOS ──────────────────────────── */
.eleitoral-planos {
  background: var(--gsc-white);
  padding: 100px 0;
}
.planos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}
.plano-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
  transition: var(--transition);
  position: relative;
}
.plano-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.plano-card.destaque {
  border-color: var(--gsc-red);
  box-shadow: 0 0 0 2px var(--gsc-red), var(--shadow-md);
  transform: translateY(-8px);
}
.plano-card.destaque:hover {
  transform: translateY(-14px);
}
.plano-ribbon {
  position: absolute;
  top: 16px; right: -26px;
  background: var(--gsc-red);
  color: #fff;
  font-family: var(--font-semi);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 32px;
  transform: rotate(45deg);
  transform-origin: center;
}
.plano-header {
  padding: 28px 24px 20px;
  background: var(--gsc-light);
}
.plano-card.destaque .plano-header {
  background: var(--gsc-red);
  color: #fff;
}
.plano-icon { font-size: 28px; margin-bottom: 12px; display: block; }
.plano-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--gsc-black);
  margin-bottom: 4px;
}
.plano-card.destaque .plano-name { color: #fff; }
.plano-rec {
  font-family: var(--font-semi);
  font-size: 11.5px;
  font-weight: 500;
  color: var(--gsc-grey);
  line-height: 1.4;
}
.plano-card.destaque .plano-rec { color: rgba(255,255,255,.7); }
.plano-body { padding: 24px; }
.plano-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.plano-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--gsc-grey);
  line-height: 1.5;
}
.plano-features li::before {
  content: '✓';
  color: var(--gsc-teal);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 14px;
}
.plano-cta {
  width: 100%;
  justify-content: center;
  padding: 12px 20px;
  font-size: 13px;
}
.plano-card.destaque .plano-cta.btn--ghost {
  border-color: var(--gsc-red);
  color: var(--gsc-red);
}

/* ── DIFERENCIAIS ELEITORAIS ─────────── */
.eleitoral-diffs {
  background: var(--gsc-black);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.eleitoral-diffs::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent 0, transparent 40px,
    rgba(192,26,39,.025) 40px, rgba(192,26,39,.025) 80px
  );
}
.diffs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.diff-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 32px 28px;
  transition: var(--transition);
}
.diff-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(192,26,39,.3);
  transform: translateY(-4px);
}
.diff-card .diff-icon {
  width: 52px; height: 52px;
  border-radius: 10px;
  background: rgba(192,26,39,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.diff-card h4 {
  font-family: var(--font-semi);
  font-size: 17px;
  font-weight: 600;
  color: var(--gsc-white);
  margin-bottom: 10px;
}
.diff-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
}

/* ── CTA ELEITORAL ───────────────────── */
.eleitoral-cta {
  background: linear-gradient(135deg, #0A0A0A 0%, #1a0508 60%, #0A0A0A 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.eleitoral-cta::before {
  content: 'VOTE GSC';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--font-display);
  font-size: 200px;
  font-weight: 900;
  color: rgba(255,255,255,.02);
  white-space: nowrap;
  pointer-events: none;
}
.eleitoral-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  color: var(--gsc-white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.eleitoral-cta h2 span { color: var(--gsc-red); }
.eleitoral-cta p {
  font-size: 16px;
  color: rgba(255,255,255,.5);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}
.eleitoral-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.eleitoral-contact-info {
  margin-top: 36px;
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.eleitoral-contact-info span {
  font-family: var(--font-semi);
  font-size: 13px;
  color: rgba(255,255,255,.4);
  display: flex;
  align-items: center;
  gap: 8px;
}
.eleitoral-contact-info span em {
  font-style: normal;
  color: var(--gsc-teal);
}

/* ── RESPONSIVE ──────────────────────── */
@media (max-width: 1024px) {
  .eleitoral-inclui-grid { grid-template-columns: repeat(3, 1fr); }
  .planos-grid            { grid-template-columns: repeat(2, 1fr); }
  .diffs-grid             { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .eleitoral-hero .container { grid-template-columns: 1fr; }
  .eleitoral-problems         { grid-template-columns: 1fr; }
  .eleitoral-inclui-grid      { grid-template-columns: repeat(2, 1fr); }
  .planos-grid                { grid-template-columns: 1fr; }
  .plano-card.destaque        { transform: none; }
  .diffs-grid                 { grid-template-columns: 1fr; }
  .eleitoral-contact-info     { flex-direction: column; align-items: center; gap: 16px; }
}

/* ============================================================
   GSC — SOCIAL MEDIA HUB
   Carrossel com abas por rede social
============================================================ */
.social-hub {
  background: var(--gsc-white);
  padding: 72px 0 80px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.social-hub-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 20px;
}
.social-hub-title {
  display: flex;
  align-items: center;
  gap: 14px;
}
.social-hub-title h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--gsc-black);
  letter-spacing: -.01em;
}
.social-hub-title h2 span { color: var(--gsc-red); }
.social-hub-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(23,162,187,.1);
  border: 1px solid rgba(23,162,187,.25);
  border-radius: 100px;
  padding: 5px 14px;
  font-family: var(--font-semi);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gsc-teal);
}
.social-hub-live::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gsc-teal);
  animation: pulse 2s ease-in-out infinite;
}

/* ── ABAS ──────────────────────────── */
.social-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  border-bottom: 2px solid var(--gsc-light);
  padding-bottom: 0;
}
.social-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius) var(--radius) 0 0;
  border: none;
  background: transparent;
  font-family: var(--font-semi);
  font-size: 13px;
  font-weight: 600;
  color: var(--gsc-grey);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  bottom: -2px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.social-tab:hover { color: var(--gsc-black); background: var(--gsc-light); }
.social-tab.active { color: var(--gsc-black); border-bottom-color: var(--gsc-red); background: var(--gsc-white); }
.social-tab .tab-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.tab-dot-ig   { background: #E1306C; }
.tab-dot-x    { background: #000; }
.tab-dot-bsky { background: #0085FF; }
.tab-dot-th   { background: #000; }
.tab-dot-yt   { background: #FF0000; }
.tab-dot-sp   { background: #1DB954; }

/* ── PAINÉIS ───────────────────────── */
.social-panels { position: relative; min-height: 320px; }
.social-panel {
  display: none;
  animation: fadeUp .35s ease both;
}
.social-panel.active { display: block; }

/* placeholder quando plugin não está configurado */
.social-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 280px;
  background: var(--gsc-light);
  border-radius: 10px;
  border: 2px dashed var(--gsc-silver);
  text-align: center;
  padding: 40px;
}
.social-placeholder .sp-icon { font-size: 48px; opacity: .5; }
.social-placeholder h4 {
  font-family: var(--font-semi);
  font-size: 16px;
  font-weight: 600;
  color: var(--gsc-black);
}
.social-placeholder p { font-size: 13.5px; color: var(--gsc-grey); max-width: 380px; }
.social-placeholder code {
  display: block;
  background: var(--gsc-white);
  border: 1px solid var(--gsc-silver);
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--gsc-red);
  font-family: monospace;
  margin-top: 4px;
}
.social-placeholder .plugin-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gsc-white);
  border: 1px solid var(--gsc-silver);
  border-radius: 100px;
  padding: 5px 14px;
  font-family: var(--font-semi);
  font-size: 11px;
  font-weight: 600;
  color: var(--gsc-grey);
}

/* container onde o plugin injeta o feed */
.social-feed-container { width: 100%; }

/* ── SEGUIR BTN ────────────────────── */
.social-follow-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--gsc-light);
}
.social-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 100px;
  font-family: var(--font-semi);
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: 1.5px solid transparent;
}
.sfb-ig   { background: #fce4ec; color: #E1306C; border-color: #f8bbd0; }
.sfb-x    { background: #f5f5f5; color: #000;    border-color: #ddd; }
.sfb-bsky { background: #e3f2fd; color: #0085FF; border-color: #bbdefb; }
.sfb-th   { background: #f5f5f5; color: #000;    border-color: #ddd; }
.sfb-yt   { background: #ffebee; color: #FF0000; border-color: #ffcdd2; }
.sfb-sp   { background: #e8f5e9; color: #1DB954; border-color: #c8e6c9; }
.social-follow-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* ============================================================
   GSC — BLOG DESTAQUE (post em destaque no topo)
============================================================ */
.blog-destaque-section {
  background: var(--gsc-light);
  padding: 80px 0;
}
.blog-destaque-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.blog-destaque-main {
  background: var(--gsc-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.blog-destaque-main:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-destaque-thumb {
  height: 300px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-destaque-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.blog-destaque-main:hover .blog-destaque-thumb img { transform: scale(1.05); }
.blog-destaque-thumb-placeholder {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 900;
  color: rgba(255,255,255,.15);
}
.blog-destaque-cat {
  position: absolute;
  top: 20px; left: 20px;
}
.blog-destaque-body { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.blog-destaque-meta {
  font-size: 12px;
  color: var(--gsc-silver);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.blog-destaque-body h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  color: var(--gsc-black);
  line-height: 1.15;
  margin-bottom: 14px;
}
.blog-destaque-body h2 a { color: inherit; text-decoration: none; }
.blog-destaque-body h2 a:hover { color: var(--gsc-red); }
.blog-destaque-body p { font-size: 15px; color: var(--gsc-grey); line-height: 1.75; flex: 1; }
.blog-destaque-footer {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog-destaque-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bda-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gsc-red);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.bda-name { font-family: var(--font-semi); font-size: 13px; font-weight: 600; color: var(--gsc-black); }
.bda-date { font-size: 11.5px; color: var(--gsc-silver); }

/* lista lateral do destaque */
.blog-destaque-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.blog-destaque-sidebar-header {
  font-family: var(--font-semi);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gsc-grey);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gsc-red);
  display: block;
}
.blog-mini-card {
  background: var(--gsc-white);
  border-radius: 8px;
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-decoration: none;
  flex: 1;
}
.blog-mini-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.blog-mini-thumb {
  width: 72px; height: 72px;
  border-radius: 6px;
  flex-shrink: 0;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.blog-mini-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-mini-thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  font-family: var(--font-display);
  font-weight: 900;
  color: rgba(255,255,255,.2);
}
.blog-mini-body { flex: 1; }
.blog-mini-body .mini-cat {
  font-family: var(--font-semi);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gsc-red);
  margin-bottom: 5px;
  display: block;
}
.blog-mini-body h4 {
  font-family: var(--font-semi);
  font-size: 14px;
  font-weight: 600;
  color: var(--gsc-black);
  line-height: 1.4;
  margin-bottom: 5px;
}
.blog-mini-body .mini-date { font-size: 11.5px; color: var(--gsc-silver); }

/* ── RESPONSIVE ────────────────────── */
@media (max-width: 1024px) {
  .blog-destaque-inner { grid-template-columns: 1fr; }
  .blog-destaque-sidebar { flex-direction: row; flex-wrap: wrap; }
  .blog-mini-card { flex: 1 1 calc(50% - 8px); }
}
@media (max-width: 768px) {
  .social-tabs { gap: 2px; }
  .social-tab  { padding: 8px 12px; font-size: 12px; }
  .social-tab .tab-label { display: none; }
  .blog-mini-card { flex: 1 1 100%; }
  .blog-destaque-thumb { height: 220px; }
  .social-follow-bar { gap: 8px; }
}

/* ============================================================
   GSC — VARIAÇÕES DE COR DO LOGO MARK
   Azul, Verde, Roxo + Vermelho tradicional
============================================================ */

/* Vermelho — padrão */
.logo-mark          { background: var(--gsc-red); }
.logo-mark.blue     { background: #1565C0; }
.logo-mark.green    { background: #2E7D32; }
.logo-mark.purple   { background: #6A1B9A; }
.logo-mark.teal     { background: var(--gsc-teal); }

/* Tags com variações de cor */
.tag--blue   { background: #1565C0; color: #fff; }
.tag--green  { background: #2E7D32; color: #fff; }
.tag--purple { background: #6A1B9A; color: #fff; }

/* Botões com variações */
.btn--blue   { background: #1565C0; color: #fff; }
.btn--blue:hover   { background: #0D47A1; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(21,101,192,.35); }
.btn--green  { background: #2E7D32; color: #fff; }
.btn--green:hover  { background: #1B5E20; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(46,125,50,.35); }
.btn--purple { background: #6A1B9A; color: #fff; }
.btn--purple:hover { background: #4A148C; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(106,27,154,.35); }

/* Service icons com variações */
.si-blue   { background: #E3F2FD; }
.si-green  { background: #E8F5E9; }
.si-purple { background: #F3E5F5; }

/* Diff icons com variações */
.diff-icon.blue   { background: rgba(21,101,192,.15); }
.diff-icon.green  { background: rgba(46,125,50,.15); }
.diff-icon.purple { background: rgba(106,27,154,.15); }

/* Inclui cards com bordas coloridas ao hover */
.inclui-card.blue:hover   { border-bottom-color: #1565C0; }
.inclui-card.green:hover  { border-bottom-color: #2E7D32; }
.inclui-card.purple:hover { border-bottom-color: #6A1B9A; }

/* Hero stats com variações de cor */
.hero-stat .num.blue   { color: #1565C0; }
.hero-stat .num.green  { color: #2E7D32; }
.hero-stat .num.purple { color: #6A1B9A; }

/* Plano cards com borda colorida */
.plano-card.blue   { border-color: #1565C0; box-shadow: 0 0 0 2px #1565C0; }
.plano-card.green  { border-color: #2E7D32; box-shadow: 0 0 0 2px #2E7D32; }
.plano-card.purple { border-color: #6A1B9A; box-shadow: 0 0 0 2px #6A1B9A; }
.plano-card.blue  .plano-header { background: #1565C0; }
.plano-card.green .plano-header { background: #2E7D32; }
.plano-card.purple .plano-header { background: #6A1B9A; }
.plano-card.blue  .plano-name,
.plano-card.green .plano-name,
.plano-card.purple .plano-name { color: #fff; }
.plano-card.blue  .plano-rec,
.plano-card.green .plano-rec,
.plano-card.purple .plano-rec { color: rgba(255,255,255,.75); }
.plano-ribbon.blue   { background: #1565C0; }
.plano-ribbon.green  { background: #2E7D32; }
.plano-ribbon.purple { background: #6A1B9A; }

/* Seção de impacto com cor variável */
.impact-section.blue  { background: #0D1B2A; }
.impact-section.green { background: #0A1A0A; }
.impact-section.purple{ background: #1A0A2E; }

/* Section divider com variações */
.section-divider.blue   { background: #1565C0; }
.section-divider.green  { background: #2E7D32; }
.section-divider.purple { background: #6A1B9A; }

/* ── ÁREAS TEMÁTICAS por cor ─────────── */
/* Marketing → Azul */
.area-marketing { --area-color: #1565C0; --area-bg: #E3F2FD; }
/* Qualidade → Verde */
.area-qualidade { --area-color: #2E7D32; --area-bg: #E8F5E9; }
/* Gestão → Vermelho (padrão GSC) */
.area-gestao    { --area-color: var(--gsc-red); --area-bg: #fdeaec; }
/* Inovação → Roxo */
.area-inovacao  { --area-color: #6A1B9A; --area-bg: #F3E5F5; }
/* Capacitação → Teal */
.area-capacitacao { --area-color: var(--gsc-teal); --area-bg: #e3f6f9; }
/* Eleitoral → Vermelho escuro + dourado */
.area-eleitoral { --area-color: #B71C1C; --area-bg: #FFEBEE; }

.area-card {
  border-left: 4px solid var(--area-color);
}
.area-card .service-icon {
  background: var(--area-bg);
}
.area-card:hover::before {
  background: var(--area-color);
}
.area-card:hover .service-arrow {
  background: var(--area-color);
  color: #fff;
}

/* ── RESPONSIVE CORES ─────────────────── */
@media (max-width: 768px) {
  .logo-mark.blue,
  .logo-mark.green,
  .logo-mark.purple { width: 40px; height: 40px; }
}

/* ============================================================
   FONT AWESOME — ajustes para o tema GSC
============================================================ */
.service-icon { font-size: 0; }
.service-icon i {
  font-size: 26px;
  display: block;
}
.si-red   .service-icon i { color: var(--gsc-red); }
.si-teal  .service-icon i { color: var(--gsc-teal); }
.si-dark  .service-icon i { color: var(--gsc-grey); }
.si-blue  .service-icon i { color: #1565C0; }
.si-green .service-icon i { color: #2E7D32; }

.hero-card-icon i { font-size: 22px; color: #fff; }
.hero-card-icon.red   i { color: var(--gsc-red); }
.hero-card-icon.teal  i { color: var(--gsc-teal); }
.hero-card-icon.dark  i { color: rgba(255,255,255,.7); }

.ic-icon { font-size: 0; }
.ic-icon i { font-size: 36px; display: block; }

.about-teal-box i { font-size: 22px; color: #fff; }

.service-arrow i { font-size: 13px; }

.plano-icon { font-size: 0; }
.plano-icon i { font-size: 28px; display: block; margin-bottom: 12px; color: var(--gsc-black); }
.plano-card.destaque .plano-icon i { color: #fff; }

.ep-icon { font-size: 0; width: 36px; height: 36px; border-radius: 8px; background: rgba(192,26,39,.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.ep-icon i { font-size: 16px; color: var(--gsc-red); display: block; }

/* Topbar icons */
.gsc-topbar i { margin-right: 4px; font-size: 11px; }

/* Blog read arrow */
.blog-read i { font-size: 12px; transition: var(--transition); }
.blog-read:hover i { transform: translateX(4px); }

/* Botoes */
.btn i { font-size: 14px; }

/* Diff cards escuros */
.eleitoral-diffs .diff-icon { display: flex; align-items: center; justify-content: center; }
