/* ================================================================
   PR43 TECNOLOGIA — publico.css
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=IBM+Plex+Mono:wght@400;500&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ---- Custom Properties --------------------------------------- */
:root {
  --c-bg:         #0a0f1e;
  --c-surface:    #111827;
  --c-blue:       #2563eb;
  --c-blue-h:     #1d4ed8;
  --c-blue-l:     #3b82f6;
  --c-cyan:       #22d3ee;
  --c-white:      #f8fafc;
  --c-gray:       #94a3b8;
  --c-border:     rgba(255,255,255,0.08);
  --f-display:    'Syne', sans-serif;
  --f-mono:       'IBM Plex Mono', 'Courier New', monospace;
  --f-body:       'DM Sans', 'Inter', sans-serif;
  --r-sm:         8px;
  --r-md:         16px;
  --r-lg:         24px;
  --ease:         all 0.3s ease;
}

/* ---- Base ---------------------------------------------------- */
html, body {
  height: 100%;
  margin: 0;
  background: var(--c-white);
  font-family: var(--f-body);
  color: #1e293b;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

section[id] { scroll-margin-top: 80px; }

/* ---- Utilities ----------------------------------------------- */
.py-6 { padding-top: 5rem; padding-bottom: 5rem; }

.section-tag {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--c-blue-l);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 6px 14px;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: 50px;
}

.section-tag.light {
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

.section-title {
  font-family: var(--f-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #64748b;
  max-width: 560px;
  margin: 16px auto 0;
  line-height: 1.65;
}

.text-gradient {
  background: linear-gradient(135deg, var(--c-blue), var(--c-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ================================================================
   NAVBAR
   ================================================================ */
.site-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: transparent;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.site-navbar.scrolled {
  background: rgba(10,15,30,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05), 0 4px 24px rgba(0,0,0,0.3);
}

/* Override old rule */
.navbar { background: transparent !important; border-top: none; }
.navbar::after { display: none; }

.site-logo {
  font-family: var(--f-mono);
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff !important;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: var(--ease);
}
.site-logo:hover { color: var(--c-blue-l) !important; }

.logo-mark { color: var(--c-blue-l); font-weight: 400; }

.logo-img {
  height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: var(--ease);
}
.site-logo:hover .logo-img { opacity: 0.85; }

.site-navbar .navbar-nav .nav-link {
  color: rgba(255,255,255,0.72) !important;
  font-family: var(--f-body);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px !important;
  transition: color 0.2s;
}
.site-navbar .navbar-nav .nav-link:hover { color: #fff !important; }

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--c-blue);
  color: #000000 !important;
  font-family: var(--f-body);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 9px 22px !important;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--ease);
  border: 1px solid var(--c-blue);
}
.btn-nav-cta:hover {
  background: var(--c-blue-h);
  color: #594848 !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(37,99,235,0.4);
}

.navbar-toggler { border: 1px solid rgba(255,255,255,0.2) !important; border-radius: 6px; }
.navbar-toggler:focus { box-shadow: none; outline: none; }

/* ================================================================
   HERO
   ================================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: var(--c-bg);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}

/* Grid background */
.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 75%);
}

/* Glowing orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.7), transparent 70%);
  top: -200px; right: -100px;
  animation: floatOrb 9s ease-in-out infinite;
}
.hero-orb-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(34,211,238,0.45), transparent 70%);
  bottom: -120px; left: 5%;
  animation: floatOrb 13s ease-in-out infinite reverse;
}
.hero-orb-3 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(99,102,241,0.5), transparent 70%);
  top: 40%; left: 38%;
  animation: floatOrb 11s ease-in-out infinite;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0); }
  33%       { transform: translate(28px, -18px); }
  66%       { transform: translate(-14px, 14px); }
}

/* Hero text */
.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  font-family: var(--f-body);
  font-weight: 500;
  animation: fadeUp 0.8s ease 0.1s both;
}

.badge-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulseDot 2s ease infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.3); }
}

.hero-heading {
  font-family: var(--f-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.04em;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-heading-accent {
  background: linear-gradient(135deg, var(--c-blue-l), var(--c-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtext {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.58);
  max-width: 520px;
  line-height: 1.75;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero-actions { animation: fadeUp 0.8s ease 0.4s both; }

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  background: var(--c-blue);
  color: #fff;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--ease);
}
.btn-hero-primary:hover {
  background: var(--c-blue-h);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37,99,235,0.45);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: rgba(255,255,255,0.78);
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--ease);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

.hero-tech { animation: fadeUp 0.8s ease 0.5s both; }

.hero-tech-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: var(--f-mono);
  margin-bottom: 12px;
}

.tech-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.tech-tag {
  display: inline-block;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  font-family: var(--f-mono);
  font-size: 0.75rem;
  padding: 5px 12px;
  border-radius: 4px;
  transition: var(--ease);
}
.tech-tag:hover {
  background: rgba(37,99,235,0.15);
  border-color: rgba(37,99,235,0.45);
  color: var(--c-blue-l);
}

/* Code window */
.hero-visual {
  position: relative;
  z-index: 2;
  animation: fadeUp 0.8s ease 0.35s both;
}

.logo-window-body {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  padding: 36px 40px;
}
.logo-window-body img {
  width: 100%;
  max-width: 340px;
  height: auto;
  display: block;
}

.code-window {
  background: #0d1526;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  overflow: hidden;
  min-width: 380px;
  box-shadow:
    0 30px 70px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.04),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.code-header {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 13px 18px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.win-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.win-dot.red    { background: #ff5f57; }
.win-dot.yellow { background: #febc2e; }
.win-dot.green  { background: #28c840; }

.code-filename {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  margin-left: auto;
}

.code-body {
  padding: 24px 26px;
  font-family: var(--f-mono);
  font-size: 0.82rem;
  line-height: 1.85;
}
.code-line { display: block; }
.ck { color: #c792ea; }
.cv { color: #82aaff; }
.cf { color: #82aaff; }
.cs { color: #c3e88d; }
.cn { color: #f78c6c; }
.cp { color: #89ddff; }
.cc { color: #4a6070; }

.code-cursor {
  color: var(--c-blue-l);
  font-weight: 700;
}

/* Floating badges */
.float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.96);
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #0f172a;
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
  white-space: nowrap;
}
.float-badge i { font-size: 1rem; }

.fb-1 {
  top: -20px; right: -24px;
  animation: floatBadge 4s ease-in-out infinite;
}
.fb-1 i { color: #22c55e; }

.fb-2 {
  bottom: 20px; left: -30px;
  animation: floatBadge 4s ease-in-out 2s infinite;
}
.fb-2 i { color: var(--c-blue); }

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

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.28);
  font-family: var(--f-mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  animation: fadeUp 1s ease 1s both;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.8; transform: scaleY(1); }
  50%       { opacity: 0.25; transform: scaleY(0.5); }
}

/* ================================================================
   SERVICES
   ================================================================ */
.services-section {
  background: #f8fafc;
  padding: 6rem 0;
}

.service-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--r-md);
  padding: 36px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-blue), var(--c-cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  border-color: rgba(37,99,235,0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(37,99,235,0.1), 0 4px 12px rgba(0,0,0,0.04);
}
.service-card:hover::before { transform: scaleX(1); }

/* Featured card */
.service-card-featured {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  border-color: transparent;
}
.service-card-featured::before { display: none; }
.service-card-featured:hover { box-shadow: 0 20px 50px rgba(37,99,235,0.25); }
.service-card-featured .service-title { color: #fff; }
.service-card-featured .service-desc  { color: rgba(255,255,255,0.6); }
.service-card-featured .service-link  { color: var(--c-cyan); }
.service-card-featured .service-icon-wrap {
  background: rgba(255,255,255,0.14);
  color: #fff;
}
.service-card-featured:hover .service-icon-wrap {
  background: rgba(255,255,255,0.24);
}

.service-icon-wrap {
  width: 52px; height: 52px;
  background: rgba(37,99,235,0.09);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--c-blue);
  margin-bottom: 24px;
  flex-shrink: 0;
  transition: var(--ease);
}
.service-card:not(.service-card-featured):hover .service-icon-wrap {
  background: var(--c-blue);
  color: #fff;
  transform: rotate(-5deg) scale(1.1);
}

.service-title {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.service-desc {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.65;
  flex: 1;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-blue);
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}
.service-link:hover { color: var(--c-blue-h); gap: 10px; }

/* ================================================================
   STATS
   ================================================================ */
.stats-section {
  background: var(--c-bg);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.stat-item { padding: 20px; position: relative; z-index: 1; }

.stat-number {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #fff, rgba(255,255,255,0.65));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.42);
  margin-top: 10px;
  font-family: var(--f-body);
}

/* ================================================================
   ABOUT
   ================================================================ */
.about-section {
  background: #fff;
  padding: 6rem 0;
}

.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-grid-art {
  position: relative;
  width: 360px;
  height: 360px;
}

.grid-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 130px;
  height: 130px;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 0.82rem;
  transition: transform 0.3s ease;
  cursor: default;
}
.grid-card:hover { transform: scale(1.06); }
.grid-card i { font-size: 1.6rem; }

.gc-1 { top: 0; left: 0; background: linear-gradient(135deg, #0f172a, #1e3a8a); color: rgba(255,255,255,0.9); box-shadow: 0 10px 30px rgba(15,23,42,0.3); }
.gc-2 { top: 0; right: 0; background: #f8fafc; color: #334155; border: 1px solid #e2e8f0; box-shadow: 0 4px 16px rgba(0,0,0,0.05); }
.gc-3 { bottom: 0; left: 0; background: #f8fafc; color: #334155; border: 1px solid #e2e8f0; box-shadow: 0 4px 16px rgba(0,0,0,0.05); }
.gc-4 { bottom: 0; right: 0; background: linear-gradient(135deg, var(--c-blue), var(--c-cyan)); color: #fff; box-shadow: 0 10px 30px rgba(37,99,235,0.35); }

.about-center-badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  width: 100px; height: 100px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.about-year {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
}
.about-founded {
  font-size: 0.62rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--f-mono);
}

.about-text {
  font-size: 1rem;
  color: #475569;
  line-height: 1.78;
  margin-bottom: 16px;
}

.about-pillars { display: flex; flex-direction: column; gap: 14px; }

.pillar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #334155;
}
.pillar-item i { color: #22c55e; font-size: 1rem; flex-shrink: 0; }

.btn-primary-custom {
  align-items: center;
  background: linear-gradient(135deg, var(--c-blue), var(--c-blue-h));
  color: #fff;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--ease);
  border: none;
}
.btn-primary-custom:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37,99,235,0.4);
}

/* ================================================================
   CTA
   ================================================================ */
.cta-section {
  position: relative;
  background: var(--c-bg);
  padding: 100px 0;
  overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; pointer-events: none; }

.cta-orb-1 {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.3), transparent 60%);
  top: -200px; left: -200px;
  filter: blur(60px);
}
.cta-orb-2 {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,211,238,0.2), transparent 60%);
  bottom: -150px; right: -100px;
  filter: blur(60px);
}

.cta-title {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.cta-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.52);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.72;
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #0f172a;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--ease);
}
.btn-cta-white:hover {
  color: #0f172a;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255,255,255,0.18);
}

.btn-cta-whatsapp {
  display: inline-flex;
  align-items: center;
  background: #25d366;
  color: #fff;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--ease);
}
.btn-cta-whatsapp:hover {
  background: #1ebe5d;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37,211,102,0.35);
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: #060b17;
  color: rgba(255,255,255,0.5);
}
.footer-inner { padding: 72px 0 48px; }

.footer-top-row {
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo {
  font-family: var(--f-mono);
  font-size: 1.45rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
}
.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.72;
  max-width: 280px;
}

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

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--ease);
}
.social-icon:hover {
  background: var(--c-blue);
  border-color: var(--c-blue);
  color: #fff;
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}

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

.footer-nav-list a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.42);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav-list a:hover { color: #fff; }

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

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.42);
}
.footer-contact-list i {
  color: var(--c-blue-l);
  font-size: 0.85rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact-list a {
  color: rgba(255,255,255,0.42);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-list a:hover { color: #fff; }

.footer-bottom-bar {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.28); }

.footer-legal-links { display: flex; align-items: center; gap: 4px; font-size: 0.8rem; }
.footer-legal-links a { color: rgba(255,255,255,0.32); text-decoration: none; transition: color 0.2s; }
.footer-legal-links a:hover { color: rgba(255,255,255,0.7); }
.footer-legal-links .sep { color: rgba(255,255,255,0.18); }

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger siblings */
.row > .reveal-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.row > .reveal-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.row > .reveal-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.row > .reveal-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.row > .reveal-on-scroll:nth-child(6) { transition-delay: 0.5s; }

/* Hero entrance */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 991px) {
  .hero-section   { padding: 110px 0 60px; }
  .about-grid-art { width: 280px; height: 280px; }
  .grid-card      { width: 100px; height: 100px; font-size: 0.75rem; }
  .grid-card i    { font-size: 1.25rem; }
  .about-center-badge { width: 80px; height: 80px; }
  .about-year     { font-size: 1.1rem; }
}

@media (max-width: 767px) {
  .hero-heading      { font-size: clamp(2.5rem, 8vw, 3.5rem); }
  .scroll-indicator  { display: none; }
  .float-badge       { display: none; }
  .services-section  { padding: 4rem 0; }
  .about-section     { padding: 4rem 0; }
  .cta-section       { padding: 70px 0; }
  .footer-inner      { padding: 48px 0 32px; }
}

/* ================================================================
   LEGACY / ADMIN STYLES (kept for other pages)
   ================================================================ */
.conteudo-publico { flex: 1; }

/* Old navbar fallback */
.navbar-nav .nav-link {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 14px;
  transition: 0.2s;
}
.navbar .btn {
  background: #ffffff;
  color: #1e3a8a;
  border-radius: 20px;
  padding: 5px 15px;
  font-weight: 500;
}
.navbar .btn:hover { background: #e5e7eb; }

.dropdown-menu {
  background: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 0;
  padding: 8px 0;
  min-width: 220px;
  margin-top: 8px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.dropdown-menu .dropdown-item {
  color: #222 !important;
  font-family: var(--f-body);
  font-size: 15px;
  padding: 10px 18px;
  transition: 0.2s;
}
.dropdown-menu .dropdown-item:hover { background: #f5f5f5; color: #000 !important; }

/* Generic card */
.card { border: none; border-radius: 15px; transition: all .25s ease; }
.card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.15); }

/* Old buttons */
.btn-primary {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  border: none;
}
.btn-primary:hover { background: linear-gradient(135deg, #1e40af, #1e3a8a); }

/* Old footer */
.footer { background: #0f172a; color: #cbd5e1; box-shadow: 0 -5px 20px rgba(0,0,0,0.3); }
.footer a { color: #94a3b8; }
.footer a:hover { color: #ffffff; }

/* Vereador */
.vereador-card     { border-radius: 18px; transition: .25s ease; background: #fff; }
.vereador-card:hover { transform: translateY(-4px); box-shadow: 0 15px 35px rgba(0,0,0,.10) !important; }
.vereador-foto     { width: 110px; height: 110px; object-fit: cover; border: 4px solid #f1f5f9; }
.vereador-foto-placeholder { width: 110px; height: 110px; font-size: 2rem; color: #64748b; }
.vereador-nome     { font-size: .95rem; line-height: 1.3; color: #0f172a; }
.vereador-cargo    { font-size: .72rem; color: #2563eb; font-weight: 600; margin-top: 4px; }
.vereador-partido  { font-size: .72rem; color: #64748b; margin-top: 2px; }
.vereador-btn      { border-radius: 10px; font-size: .75rem; border: 1px solid #e2e8f0; }
.vereador-btn:hover { background: #2563eb; color: #fff; border-color: #2563eb; }
