/* ============================================================
   M2E – Saúde, Segurança e Facilities | Global Stylesheet
   ============================================================ */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── Paleta oficial M2E ── */
  --teal-900: #032f34;   /* fundo escuro (navbar/hero/footer) */
  --teal-800: #054349;
  --teal-700: #065a62;
  --teal-600: #06808B;   /* Azul-petróleo M2E – cor primária */
  --teal-500: #0a9daa;
  --teal-400: #15b8c7;
  --teal-300: #5dd3dc;
  --teal-100: #d0f2f5;
  --teal-50:  #e8f9fa;
  --green-700: #4a7a20;
  --green-600: #5a9228;
  --green-500: #6AA742;  /* Verde M2E – cor secundária */
  --green-400: #85c055;
  --green-300: #a8d47f;
  --green-100: #e6f4d7;
  --green-50:  #f2faeb;
  /* aliases para retrocompatibilidade dos componentes */
  --blue-900: #032f34;
  --blue-800: #054349;
  --blue-700: #065a62;
  --blue-600: #06808B;
  --blue-500: #0a9daa;
  --blue-400: #15b8c7;
  --blue-300: #5dd3dc;
  --blue-100: #d0f2f5;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50:  #f9fafb;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.14);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.18);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.2; color: var(--gray-900); }
h1 { font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.75rem); letter-spacing: -0.01em; }
h4 { font-size: 1.15rem; }
p  { font-size: 1.0625rem; color: var(--gray-600); line-height: 1.7; }

.text-sm  { font-size: 0.875rem; }
.text-xs  { font-size: 0.75rem; }
.text-lg  { font-size: 1.125rem; }
.text-xl  { font-size: 1.25rem; }
.font-semibold { font-weight: 600; }
.text-white { color: var(--white) !important; }
.text-blue  { color: var(--teal-600); }
.text-teal  { color: var(--teal-600); }
.text-green { color: var(--green-500); }
.text-gray  { color: var(--gray-500); }

/* --- LAYOUT --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-wide {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 128px 0; }

/* --- GRID --- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex   { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { flex-direction: column; }
.gap-4  { gap: 16px; }
.gap-6  { gap: 24px; }
.gap-8  { gap: 32px; }
.items-center { align-items: center; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }
.btn-primary {
  background: linear-gradient(135deg, var(--teal-700), var(--teal-600));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(6,128,139,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(6,128,139,0.45); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.08); }
.btn-outline {
  background: transparent;
  color: var(--teal-600);
  border: 2px solid var(--teal-600);
}
.btn-outline:hover { background: var(--teal-600); color: var(--white); }
.btn-green {
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(106,167,66,0.3);
}
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(106,167,66,0.4); }
.btn-lg { padding: 18px 36px; font-size: 1.0625rem; }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-group { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* --- BADGES --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.badge-blue { background: var(--teal-100); color: var(--teal-600); }
.badge-teal { background: var(--teal-100); color: var(--teal-600); }
.badge-green { background: var(--green-100); color: var(--green-600); }
.badge-white { background: rgba(255,255,255,0.15); color: var(--white); }

/* --- NAVBAR --- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: var(--transition);
  background: transparent;
}
#navbar.scrolled {
  background: rgba(3, 47, 52, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
  height: 88px;
}
#navbar.light-nav {
  background: var(--white);
  box-shadow: 0 1px 0 var(--gray-200);
}
#navbar.light-nav .nav-link { color: var(--gray-700); }
#navbar.light-nav .nav-link:hover { color: var(--teal-600); }
#navbar.light-nav .nav-logo { filter: none; }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
/* Logo PNG real da M2E — navbar e footer */
.nav-logo-img {
  height: 112px;
  width: auto;
  max-width: 380px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1)
    drop-shadow(0 0 14px rgba(6,128,139,0.7))
    drop-shadow(0 2px 6px rgba(0,0,0,0.4));
  transition: filter 0.3s ease, transform 0.3s ease;
  opacity: 0.97;
  flex-shrink: 0;
}
.nav-logo:hover .nav-logo-img {
  filter: brightness(0) invert(1)
    drop-shadow(0 0 24px rgba(6,128,139,0.95))
    drop-shadow(0 0 8px rgba(106,167,66,0.4));
  transform: scale(1.04);
  opacity: 1;
}
.footer-logo-img {
  height: 70px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  display: block;
  filter: brightness(1.08);
}

/* Classes legadas mantidas para não quebrar outros usos */
.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: transparent;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.nav-logo-icon img,
.nav-logo-icon svg { width: 42px; height: 42px; object-fit: contain; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-name { font-weight: 800; font-size: 1.25rem; color: var(--green-400); letter-spacing: -0.02em; }
.nav-logo-tagline { font-size: 0.62rem; color: rgba(255,255,255,0.5); font-weight: 400; letter-spacing: 0.07em; text-transform: lowercase; }
#navbar.light-nav .nav-logo-name { color: var(--green-500); }
#navbar.light-nav .nav-logo-tagline { color: var(--gray-500); }

/* ── Nav Tagline: frase central sutil entre logo e menu ── */
.nav-tagline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  flex: 1;
  justify-content: center;
  user-select: none;
  pointer-events: none;
}
.nav-tagline-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #6AA742;
  flex-shrink: 0;
  opacity: 0.7;
}
@media (max-width: 960px) {
  .nav-tagline { display: none; }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  padding: 8px 14px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.08); }

/* Dropdown */
.nav-item { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 8px;
  box-shadow: var(--shadow-xl);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: 1px solid var(--gray-100);
}
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--gray-700);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}
.nav-dropdown a:hover { background: var(--teal-50); color: var(--teal-600); }
.nav-dropdown a .dd-icon {
  width: 30px; height: 30px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.nav-cta { margin-left: 8px; }

/* Mobile menu */
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--white);
}
.nav-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--teal-900);
  z-index: 999;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-close { align-self: flex-end; background: none; border: none; color: white; cursor: pointer; font-size: 1.5rem; margin-bottom: 32px; }
.nav-mobile-link { color: white; font-size: 1.1rem; font-weight: 500; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.nav-mobile-sublabel { color: var(--teal-300); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 24px 0 8px; }

/* --- HERO GERAL --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--blue-900);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 30%, rgba(6,128,139,0.22) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(106,167,66,0.12) 0%, transparent 60%),
    linear-gradient(180deg, var(--teal-900) 0%, #021c20 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, transparent, rgba(0,0,0,0.4) 30%, rgba(0,0,0,0.4) 70%, transparent);
}
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-badge { margin-bottom: 20px; }
.hero-headline { color: var(--white); margin-bottom: 24px; }
.hero-headline span { background: linear-gradient(135deg, var(--teal-400), var(--green-400)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 1.125rem; color: rgba(255,255,255,0.7); max-width: 600px; margin-bottom: 40px; }
.hero-stats { display: flex; align-items: center; gap: 40px; margin-top: 56px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.08); flex-wrap: wrap; }
.hero-stat-value { font-size: 2rem; font-weight: 800; color: var(--white); line-height: 1; }
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* --- SECTION HEADERS --- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal-600);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.section-title { margin-bottom: 20px; }
.section-sub { font-size: 1.0625rem; color: var(--gray-500); max-width: 580px; }
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }
.section-header.centered .section-label { justify-content: center; }
.section-header.centered .section-label::before { display: none; }

/* --- CARDS --- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  overflow: hidden;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--teal-300); }
.card-body { padding: 32px; }
.card-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.card-icon-blue { background: var(--teal-100); color: var(--teal-600); }
.card-icon-teal { background: var(--teal-100); color: var(--teal-600); }
.card-icon-green { background: var(--green-100); color: var(--green-600); }
.card-icon-dark { background: var(--blue-900); color: var(--white); }
.card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.card p { font-size: 0.9375rem; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--teal-600);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}
.card-link:hover { gap: 10px; }

/* --- SOLUTION CARDS --- */
.solution-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  padding: 40px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.solution-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-600), var(--teal-400));
  opacity: 0;
  transition: opacity 0.3s;
}
.solution-card:hover::before { opacity: 1; }
.solution-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-6px); }
.solution-card.green::before { background: linear-gradient(90deg, var(--green-600), var(--green-400)); }

/* --- PROCESS STEPS --- */
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: flex;
  gap: 24px;
  position: relative;
  padding-bottom: 40px;
}
.process-step:last-child { padding-bottom: 0; }
.process-step-number {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-700), var(--teal-600));
  color: white;
  font-weight: 800;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(6,128,139,0.3);
}
.process-step-line {
  position: absolute;
  left: 23px; top: 48px; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--teal-500), var(--teal-100));
}
.process-step:last-child .process-step-line { display: none; }
.process-step-content { padding-top: 8px; }
.process-step-content h4 { margin-bottom: 8px; font-size: 1.1rem; }

/* --- FEATURES / DIFERENCIAIS --- */
.feature-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.feature-item:hover { background: var(--gray-50); }
.feature-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.feature-item h4 { font-size: 0.9375rem; margin-bottom: 4px; }
.feature-item p { font-size: 0.875rem; }

/* --- CASE CARDS --- */
.case-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: var(--transition);
}
.case-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }
.case-card-top {
  padding: 32px;
  background: linear-gradient(135deg, var(--teal-900), var(--teal-700));
  position: relative;
  overflow: hidden;
}
.case-card-top::after {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.case-card-client { font-size: 0.7rem; color: rgba(255,255,255,0.5); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.case-card-title { color: white; font-size: 1.05rem; font-weight: 700; line-height: 1.4; }
.case-card-body { padding: 28px 32px; }
.case-result {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.875rem;
  color: var(--gray-700);
}
.case-result:last-child { border-bottom: none; }
.case-result-check { color: var(--green-500); font-size: 0.9rem; flex-shrink: 0; margin-top: 2px; }
.result-check-teal { color: var(--teal-500); }

/* --- STATS --- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; }
.stat-item {
  background: var(--white);
  padding: 40px 32px;
  text-align: center;
}
.stat-value { font-size: 2.5rem; font-weight: 800; color: var(--teal-600); line-height: 1; display: block; }
.stat-label { font-size: 0.875rem; color: var(--gray-500); margin-top: 8px; }

/* --- CTA SECTION --- */
.cta-section {
  background: linear-gradient(135deg, var(--teal-900), var(--teal-700));
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(6,128,139,0.35) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(106,167,66,0.18) 0%, transparent 50%);
}
.cta-section .container { position: relative; z-index: 1; }

/* --- FORM --- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: 0.875rem; font-weight: 600; color: var(--gray-700); }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  color: var(--gray-800);
  background: var(--white);
  transition: var(--transition);
  font-family: var(--font-sans);
}
.form-control:focus { outline: none; border-color: var(--teal-600); box-shadow: 0 0 0 3px rgba(6,128,139,0.12); }
.form-control::placeholder { color: var(--gray-400); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 100px; }

/* --- FOOTER --- */
footer {
  background: var(--teal-900);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 40px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
.footer-brand p { font-size: 0.9rem; margin-top: 16px; max-width: 280px; line-height: 1.6; }
.footer-col h5 { color: var(--white); font-size: 0.875rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-contact-item { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 0.875rem; }
.footer-contact-item a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 32px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--teal-600); color: var(--white); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* --- WHATSAPP FLOAT --- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  color: white;
  font-size: 1.5rem;
  transition: var(--transition);
  cursor: pointer;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }

/* --- BACK TO TOP --- */
.back-to-top {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 999;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--teal-600);
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  box-shadow: var(--shadow-md);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--teal-500); transform: translateY(-2px); }

/* --- ANIMATIONS --- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }
.animate-from-left { opacity: 0; transform: translateX(-32px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-from-left.visible { opacity: 1; transform: translateX(0); }
.animate-from-right { opacity: 0; transform: translateX(32px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-from-right.visible { opacity: 1; transform: translateX(0); }

/* --- DIVIDER --- */
.divider { height: 1px; background: var(--gray-200); margin: 0; }

/* --- TAGS --- */
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--gray-100);
  color: var(--gray-600);
}
.tag-blue { background: var(--teal-100); color: var(--teal-700); }
.tag-teal { background: var(--teal-100); color: var(--teal-700); }

/* --- PAGE HERO (internal pages) --- */
.page-hero {
  background: linear-gradient(135deg, var(--teal-900), var(--teal-700));
  padding: 160px 0 96px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.125rem; margin-top: 16px; max-width: 620px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { opacity: 0.4; }

/* --- HIGHLIGHT BOX --- */
.highlight-box {
  background: linear-gradient(135deg, var(--teal-50), rgba(208,242,245,0.5));
  border-radius: var(--radius-lg);
  border: 1px solid var(--teal-300);
  padding: 32px;
}
.highlight-box.green {
  background: linear-gradient(135deg, var(--green-100), rgba(220,252,231,0.4));
  border-color: #86efac;
}

/* --- TABS --- */
.tabs-nav { display: flex; gap: 4px; border-bottom: 2px solid var(--gray-200); margin-bottom: 40px; }
.tab-btn {
  padding: 12px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-500);
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
}
.tab-btn.active { color: var(--teal-600); border-bottom-color: var(--teal-600); }
.tab-btn:hover { color: var(--teal-600); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* --- BLOG CARD --- */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card-img { height: 200px; background: linear-gradient(135deg, var(--teal-700), var(--teal-900)); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-card-body { padding: 24px; }
.blog-card-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.blog-card-meta .tag { font-size: 0.7rem; }
.blog-card-date { font-size: 0.75rem; color: var(--gray-400); }
.blog-card h3 { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card p { font-size: 0.875rem; color: var(--gray-500); }

/* --- ACCORDION --- */
.accordion-item { border-bottom: 1px solid var(--gray-200); }
.accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gray-800);
  text-align: left;
  gap: 16px;
}
.accordion-icon { font-size: 1rem; color: var(--teal-600); flex-shrink: 0; transition: transform 0.3s; }
.accordion-btn.open .accordion-icon { transform: rotate(45deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.accordion-body-inner { padding: 0 0 20px; font-size: 0.9375rem; color: var(--gray-600); line-height: 1.7; }

/* --- WHEN-TO-USE CHECK LIST --- */
.checklist { display: flex; flex-direction: column; gap: 12px; }
.checklist-item { display: flex; align-items: flex-start; gap: 12px; }
.checklist-icon { width: 22px; height: 22px; border-radius: 50%; background: var(--teal-100); color: var(--teal-600); display: flex; align-items: center; justify-content: center; font-size: 0.65rem; flex-shrink: 0; margin-top: 2px; }
.checklist-item span { font-size: 0.9375rem; color: var(--gray-700); }

/* --- TECH TAGS --- */
.tech-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.tech-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  background: var(--gray-100);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.tech-tag:hover { background: var(--teal-50); color: var(--teal-700); border-color: var(--teal-300); }

/* --- NOTIFICATION TOAST --- */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--gray-900);
  color: white;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-xl);
  z-index: 9999;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.success { background: var(--teal-600); }
.toast.error { background: #dc2626; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .section-lg { padding: 80px 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .nav-menu { display: none; }
  .nav-mobile-toggle { display: flex; }
  .hero-stats { gap: 24px; }
  .btn-group { flex-direction: column; align-items: flex-start; }
  #navbar { padding: 0 20px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 120px 0 60px; }
}

/* --- DARK BG UTILS --- */
.bg-dark { background: var(--teal-900); }
.bg-dark-2 { background: var(--teal-800); }
.bg-light { background: var(--gray-50); }
.bg-white { background: var(--white); }

/* ═══════════════════════════════════════════
   HERO V2 — layout profissional split 55/45
═══════════════════════════════════════════ */
.hero-v2 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hv2-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 65% 40%, rgba(6,128,139,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 10% 85%, rgba(106,167,66,0.10) 0%, transparent 55%),
    linear-gradient(160deg, #021c20 0%, #032f34 45%, #021a1e 100%);
}
.hv2-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.5) 20%, rgba(0,0,0,0.5) 80%, transparent 100%);
}
.hv2-glow {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6,128,139,0.12) 0%, transparent 65%);
  pointer-events: none;
}

/* Grid interno: 55% texto / 45% foto */
.hv2-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 72px;
  align-items: center;
  padding-top: 130px;
  padding-bottom: 80px;
  min-height: 100vh;
}

/* ── COLUNA TEXTO ── */
.hv2-text {
  display: flex;
  flex-direction: column;
}

/* eyebrow */
.hv2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}
.hv2-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #6AA742;
  box-shadow: 0 0 8px rgba(106,167,66,0.8);
  flex-shrink: 0;
  animation: hv2-pulse 2.4s ease-in-out infinite;
}
@keyframes hv2-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

/* headline */
.hv2-headline {
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  color: white;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hv2-hl-accent {
  background: linear-gradient(135deg, #4dd6e0, #6AA742);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

/* sub */
.hv2-sub {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin-bottom: 40px;
}

/* CTAs */
.hv2-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hv2-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.hv2-link-btn:hover { color: white; }

/* ══════════════════════════════════════════════
   BLOCO INFERIOR HERO — stats row + escudo
══════════════════════════════════════════════ */
.hv2-bottom-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
}
.hv2-bottom-sep {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,rgba(6,128,139,0.5) 0%,rgba(106,167,66,0.25) 60%,transparent 100%);
}

/* ── Stats em linha compacta ── */
.hv2-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
}
.hv2-stat-mini {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0 18px;
  flex: 1;
  text-align: center;
}
.hv2-stat-mini:first-child { padding-left: 0; }
.hv2-stat-mini-val {
  font-size: 1.55rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.04em;
}
.hv2-stat-mini-val sup {
  font-size: 0.8rem;
  font-weight: 700;
  color: #6AA742;
  vertical-align: super;
}
.hv2-stat-mini-lbl {
  font-size: 0.62rem;
  font-weight: 500;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.hv2-stat-mini-div {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   GOOGLE RATING BADGE — hero stats row
══════════════════════════════════════════════ */
.google-rating-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  transition:
    background   0.25s ease,
    border-color 0.25s ease,
    transform    0.25s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow   0.25s ease;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
/* brilho sutil no topo */
.google-rating-badge::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, transparent 100%);
  pointer-events: none;
}
.google-rating-badge:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(251,188,4,0.45);
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    0 8px 24px rgba(0,0,0,0.3),
    0 0 0 1px rgba(251,188,4,0.2),
    0 0 20px rgba(251,188,4,0.12);
}

/* linha topo: logo Google + score */
.grb-top {
  display: flex;
  align-items: center;
  gap: 6px;
}
.grb-google-logo {
  width: 42px;
  height: auto;
  display: block;
  flex-shrink: 0;
}
.grb-score {
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}

/* 5 estrelas douradas */
.grb-stars {
  display: flex;
  align-items: center;
  gap: 1px;
  line-height: 1;
}
.grb-star {
  font-size: 0.88rem;
  color: #FBBC04;
  display: inline-block;
  animation: starGlow 2.4s ease-in-out infinite;
  filter: drop-shadow(0 0 3px rgba(251,188,4,0.6));
}
.grb-star:nth-child(1) { animation-delay: 0s;    }
.grb-star:nth-child(2) { animation-delay: 0.12s; }
.grb-star:nth-child(3) { animation-delay: 0.24s; }
.grb-star:nth-child(4) { animation-delay: 0.36s; }
.grb-star:nth-child(5) { animation-delay: 0.48s; }
@keyframes starGlow {
  0%,100% { opacity: 1;    transform: scale(1);    }
  50%      { opacity: 0.85; transform: scale(1.15); filter: drop-shadow(0 0 5px rgba(251,188,4,0.9)); }
}

/* rodapé: 100% das avaliações */
.grb-footer {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-top: 1px;
}
.grb-pct {
  font-size: 0.72rem;
  font-weight: 800;
  color: #FBBC04;
  letter-spacing: -0.01em;
}
.grb-txt {
  font-size: 0.58rem;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* ══════════════════════════════════════════════
   AUDIT BADGE — Painel de Excelência Técnica
   (seção Diferenciais — sobreposto à foto)
══════════════════════════════════════════════ */
.audit-badge {
  position: absolute;
  bottom: 0;
  right: -16px;
  width: 260px;
  background: rgba(3, 24, 28, 0.92);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(77, 214, 224, 0.18);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.45),
    0 0 0 1px rgba(77,214,224,0.08),
    0 0 40px rgba(6,128,139,0.1) inset;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
  z-index: 10;
}
.audit-badge:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 28px 72px rgba(0,0,0,0.5),
    0 0 0 1px rgba(77,214,224,0.22),
    0 0 60px rgba(6,128,139,0.15) inset;
}

/* Cabeçalho */
.audit-badge-header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.audit-trophy-ring {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(251,188,4,0.1);
  border: 1.5px solid rgba(251,188,4,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.audit-trophy-pulse {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px solid rgba(251,188,4,0.2);
  animation: auditPulse 2.4s ease-in-out infinite;
}
@keyframes auditPulse {
  0%, 100% { transform: scale(1);   opacity: 0.7; }
  50%       { transform: scale(1.2); opacity: 0;   }
}
.audit-badge-title {
  font-size: 0.8rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.audit-badge-sub {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* Divisor */
.audit-badge-divider {
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(77,214,224,0.25) 30%,
    rgba(77,214,224,0.25) 70%,
    transparent 100%);
}

/* Grade de métricas */
.audit-metrics-grid {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.audit-metric {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 8px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s, border-color 0.2s;
  cursor: default;
}
.audit-metric:hover {
  background: rgba(77,214,224,0.06);
  border-color: rgba(77,214,224,0.14);
}
.audit-metric-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: var(--amb);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--amc);
}
.audit-metric-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.audit-metric-val {
  font-size: 0.7rem;
  font-weight: 800;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.03em;
  line-height: 1.2;
}
.audit-metric-lbl {
  font-size: 0.58rem;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.audit-metric-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 6px currentColor;
  animation: auditDotBlink 2.8s ease-in-out infinite;
}
@keyframes auditDotBlink {
  0%, 100% { opacity: 1;   }
  50%       { opacity: 0.35; }
}
.audit-metric:nth-child(2) .audit-metric-dot { animation-delay: 0.5s; }
.audit-metric:nth-child(3) .audit-metric-dot { animation-delay: 1.0s; }
.audit-metric:nth-child(4) .audit-metric-dot { animation-delay: 1.5s; }

/* Rodapé status */
.audit-badge-footer {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 4px;
}
.audit-status-led {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  box-shadow: 0 0 8px #4ade80;
  animation: auditLedPulse 1.8s ease-in-out infinite;
}
@keyframes auditLedPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px #4ade80; }
  50%       { opacity: 0.6; box-shadow: 0 0 3px #4ade80; }
}
.audit-status-txt {
  font-size: 0.58rem;
  color: rgba(255,255,255,0.38);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.3;
}
.audit-status-txt strong {
  color: #4ade80;
  font-weight: 700;
}

/* Responsivo: reposiciona badge em telas menores */
@media (max-width: 1080px) {
  .audit-badge {
    position: static;
    width: 100%;
    margin-top: 16px;
    right: auto;
  }
  .audit-metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .audit-metrics-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   ESCUDO DE CONFORMIDADE — composição orbital
══════════════════════════════════════════════ */
.compliance-shield {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 110px;
  /* cursor de contexto para acessibilidade */
  cursor: default;
}

/* Linha decorativa de fundo */
.shield-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.6;
}

/* ── Núcleo central ── */
.shield-core {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  z-index: 2;
  margin-right: 24px;
}
.shield-core-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1.5px solid rgba(6,128,139,0.35);
  animation: shieldPulse 3s ease-in-out infinite;
}
@keyframes shieldPulse {
  0%,100% { transform: scale(1);   opacity: 0.5; }
  50%      { transform: scale(1.12); opacity: 1;   }
}
.shield-core-inner {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, rgba(6,128,139,0.35), rgba(3,47,52,0.7));
  border: 1.5px solid rgba(6,128,139,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(6,128,139,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}
.shield-core-label {
  font-size: 0.52rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-align: center;
  margin-top: 2px;
}

/* ── Órbita: wrapper em linha ── */
.shield-orbit {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  flex-wrap: wrap;
}

/* ── Nó individual ── */
.shield-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), opacity 0.2s;
}
.shield-node:hover { transform: translateY(-4px) scale(1.08); }

.shield-node-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--bg, rgba(6,128,139,0.15));
  border: 1.5px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color, #4dd6e0);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  position: relative;
  overflow: hidden;
}
/* brilho sutil no topo do ícone */
.shield-node-icon::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.07) 0%, transparent 100%);
  border-radius: 10px 10px 0 0;
}
.shield-node:hover .shield-node-icon {
  border-color: var(--color, #4dd6e0);
  box-shadow: 0 4px 18px rgba(0,0,0,0.3), 0 0 12px color-mix(in srgb, var(--color, #4dd6e0) 30%, transparent);
  background: color-mix(in srgb, var(--bg, rgba(6,128,139,0.18)) 100%, transparent);
}

.shield-node-label {
  font-size: 0.58rem;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  transition: color 0.2s;
  white-space: nowrap;
}
.shield-node:hover .shield-node-label {
  color: var(--color, #4dd6e0);
}

/* conector horizontal entre núcleo e nós */
.compliance-shield::before {
  content: '';
  position: absolute;
  left: 56px;
  top: 50%;
  transform: translateY(-50%);
  width: calc(100% - 80px);
  height: 1px;
  background: linear-gradient(90deg,
    rgba(6,128,139,0.6) 0%,
    rgba(106,167,66,0.3) 50%,
    transparent 100%
  );
  pointer-events: none;
}

/* ── COLUNA FOTO ── */
.hv2-photo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* frame */
.hv2-frame {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  height: 600px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.07),
    0 40px 100px rgba(0,0,0,0.55),
    0 0 60px rgba(6,128,139,0.12);
}
.hv2-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.hv2-frame-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(3,47,52,0.75) 0%,
    rgba(3,47,52,0.1) 40%,
    transparent 70%
  );
}

/* badge "operação ativa" */
.hv2-badge-live {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  background: rgba(3,47,52,0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(106,167,66,0.3);
  border-radius: 12px;
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.hv2-live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #6AA742;
  box-shadow: 0 0 10px #6AA742;
  flex-shrink: 0;
  animation: hv2-pulse 2s ease-in-out infinite;
}

/* cards flutuantes */
.hv2-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.96);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18), 0 0 0 1px rgba(0,0,0,0.05);
  backdrop-filter: blur(8px);
  min-width: 210px;
}
.hv2-float-top {
  top: 32px;
  right: -28px;
}
.hv2-float-bottom {
  bottom: 96px;
  right: -28px;
}
.hv2-fc-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: #ecfeff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hv2-fc-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
}
.hv2-fc-sub {
  font-size: 0.7rem;
  color: #64748b;
  font-weight: 500;
}

/* seta scroll */
.hv2-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  animation: hv2-bob 2s ease-in-out infinite;
}
@keyframes hv2-bob {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* manter compatibilidade c/ .badge-dot usado em outros lugares */
.badge-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #6AA742;
  flex-shrink: 0;
}

/* hero-stat / hero-scroll-hint antigos — mantidos para não quebrar outras refs */
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-sep { width: 1px; height: 48px; background: rgba(255,255,255,0.1); }
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.35;
  animation: blobFloat 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════
   CLIENTS BAR
═══════════════════════════════════════════ */
.clients-bar {
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 20px 0;
}
.clients-bar-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.clients-bar-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  white-space: nowrap;
  flex-shrink: 0;
}
.clients-list {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.client-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-500);
  transition: color 0.2s;
}
.client-name:hover { color: var(--teal-600); }
.client-sep { color: var(--gray-300); font-size: 0.75rem; }

/* ═══════════════════════════════════════════
   METHOD CARD (problema/contexto)
═══════════════════════════════════════════ */
.method-card {
  background: linear-gradient(135deg, var(--teal-900), var(--teal-800));
  border-radius: var(--radius-xl);
  padding: 36px;
  color: white;
  border: 1px solid rgba(6,128,139,0.2);
}
.method-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
}
.method-live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #6AA742;
  box-shadow: 0 0 8px #6AA742;
  animation: pulse-dot 2s ease-in-out infinite;
}
.method-step {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.method-step.last { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.method-step-n {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(6,128,139,0.25);
  border: 1px solid rgba(6,128,139,0.3);
  color: var(--teal-400);
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
}
.method-step-title {
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 4px;
  color: white;
}
.method-step-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════
   SOLUTION CARDS COM FOTO
═══════════════════════════════════════════ */
.solution-card-photo {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: var(--transition);
  display: block;
  color: inherit;
}
.solution-card-photo:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
  border-color: var(--teal-300);
}
.scp-img {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: var(--teal-900);
}
.scp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.5s ease;
}
/* Card Segurança Física — nova imagem CFTV high-tech 1024x768 */
.scp-img.scp-wide {
  height: 300px;
}
.scp-img.scp-wide img {
  object-fit: cover;
  object-position: center center;
}
.solution-card-photo:hover .scp-img.scp-wide img { transform: scale(1.05); }
.solution-card-photo:hover .scp-img img { transform: scale(1.05); }
.scp-img-dark { display: flex; align-items: center; justify-content: center; }
.scp-img-placeholder { display: flex; align-items: center; justify-content: center; width: 100%; }
.scp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3,47,52,0.7) 0%, transparent 60%);
}
.scp-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 5px 14px;
  border-radius: 100px;
  background: rgba(6,128,139,0.85);
  backdrop-filter: blur(8px);
  font-size: 0.72rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.scp-tag-green { background: rgba(90,146,40,0.85); }
.scp-tag-amber { background: rgba(180,83,9,0.85); }
.scp-body { padding: 28px; }
.scp-body h3 { font-size: 1.15rem; margin-bottom: 10px; }
.scp-body p { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 20px; }
.scp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.scp-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray-600);
}
.scp-list li svg { flex-shrink: 0; margin-top: 2px; }
.scp-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal-600);
  transition: gap 0.2s;
}
.solution-card-photo:hover .scp-link { gap: 10px; }

/* ═══════════════════════════════════════════
   EXTRA SERVICE CARDS (EPIs / BioCare)
═══════════════════════════════════════════ */
.extra-service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--transition);
  color: inherit;
}
.extra-service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--teal-300);
  transform: translateY(-2px);
}
.extra-service-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.extra-service-icon-teal { background: var(--teal-100); color: var(--teal-600); }
.extra-service-icon-red  { background: #ffe4e6; color: #e11d48; }
.extra-service-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal-600);
  transition: color 0.2s;
}
.extra-service-card:hover .extra-service-link { color: var(--teal-700); }

/* ═══════════════════════════════════════════
   PHOTO FULL-WIDTH SECTION
═══════════════════════════════════════════ */
.photo-full-section {
  position: relative;
  height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.photo-full-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.photo-full-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.photo-full-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(3,47,52,0.92) 0%,
    rgba(3,47,52,0.75) 40%,
    rgba(3,47,52,0.2) 100%
  );
}
.photo-full-content {
  position: relative;
  z-index: 1;
}
.photo-full-text { max-width: 560px; }

/* ═══════════════════════════════════════════
   PHOTO METHOD FRAME (como atuamos)
═══════════════════════════════════════════ */
.photo-method-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 480px;
  box-shadow: var(--shadow-xl);
}
.photo-method-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.photo-method-badge {
  position: absolute;
  bottom: -16px;
  right: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 110px;
}

/* ═══════════════════════════════════════════
   SOBRE — stats sobrepostos na foto
═══════════════════════════════════════════ */
.sobre-stats-overlay {
  position: absolute;
  bottom: -20px;
  left: 20px;
  right: 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}
.sobre-stat-mini { text-align: center; }
.sobre-stat-val {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--teal-600);
  line-height: 1;
  margin-bottom: 4px;
}
.sobre-stat-lbl {
  font-size: 0.72rem;
  color: var(--gray-400);
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   FOTO NAS PÁGINAS DE SOLUÇÕES
═══════════════════════════════════════════ */
.solution-photo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  min-height: 500px;
}
.solution-photo-side {
  position: relative;
  overflow: hidden;
}
.solution-photo-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.solution-content-side {
  background: linear-gradient(135deg, var(--teal-900), var(--teal-800));
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}

/* ═══════════════════════════════════════════
   RESPONSIVE — hero v2 + novos componentes
═══════════════════════════════════════════ */
@media (max-width: 1200px) {
  .hv2-float-top  { right: -10px; }
  .hv2-float-bottom { right: -10px; }
}
@media (max-width: 1024px) {
  .hv2-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 140px;
    padding-bottom: 60px;
    min-height: auto;
  }
  .hv2-frame { height: 420px; }
  .hv2-float-top  { top: 20px;  right: 16px; }
  .hv2-float-bottom { bottom: 80px; right: 16px; }
  .hv2-metrics { gap: 0; }
  /* legados */
  .hero-split-inner { grid-template-columns: 1fr; gap: 48px; padding-top: 120px; }
  .hero-photo-frame { height: 400px; }
  .photo-full-section { height: 480px; }
  .photo-method-frame { height: 360px; }
  .solution-photo-split { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hv2-inner { padding-top: 120px; gap: 40px; }
  .hv2-headline { font-size: 2.2rem; }
  .hv2-frame { height: 320px; }
  .hv2-float-top { display: none; }
  .hv2-float-bottom { right: 12px; bottom: 70px; min-width: 180px; }
  .hv2-ctas { flex-direction: column; align-items: flex-start; }
  /* stats row mobile */
  .hv2-stat-mini { padding: 0 10px; }
  .hv2-stat-mini-val { font-size: 1.2rem; }
  /* escudo mobile: núcleo menor + nós em 2 colunas */
  .compliance-shield { height: auto; flex-wrap: wrap; gap: 10px; }
  .shield-core { margin-right: 0; margin-bottom: 4px; }
  .shield-core-inner { width: 36px; height: 36px; }
  .shield-orbit { gap: 8px; justify-content: center; }
  .shield-node-icon { width: 28px; height: 28px; border-radius: 8px; }
  .compliance-shield::before { display: none; }
  /* legados */
  .hero-stat-sep { display: none; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .clients-bar-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .photo-full-section { height: auto; padding: 80px 0; }
  .photo-method-frame { height: 280px; }
  .photo-method-badge { position: static; margin-top: 20px; display: inline-block; }
  .sobre-stats-overlay { position: static; margin-top: 20px; }
  .scp-img { height: 240px; }
}
@media (max-width: 480px) {
  .hv2-float-bottom { display: none; }
  .hv2-stats-row { gap: 0; }
  .hv2-stat-mini { padding: 0 8px; }
  .shield-node-label { display: none; }
  .compliance-shield { height: auto; }
}

.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }

/* ============================================================
   PAINEL DE VIGILÂNCIA ATIVA — Segurança Física (svc-monitor-panel)
   Conceito: Central de monitoramento dark glassmorphism premium
   ============================================================ */

.svc-monitor-panel {
  background: linear-gradient(145deg, #032f34 0%, #041f22 60%, #021518 100%);
  border: 1px solid rgba(6,128,139,0.35);
  border-radius: 20px;
  padding: 28px 28px 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45), 0 0 0 1px rgba(6,128,139,0.08) inset, 0 1px 0 rgba(255,255,255,0.04) inset;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.svc-monitor-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 80% 10%, rgba(6,128,139,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.svc-monitor-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(6,128,139,0.25) inset, 0 0 40px rgba(6,128,139,0.08);
}

/* Topbar */
.svc-mon-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.svc-mon-topbar-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.svc-mon-topbar-right {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: 100px;
  padding: 3px 10px;
}
.svc-mon-topbar-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.svc-mon-led {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.svc-mon-led--green {
  background: #4ade80;
  box-shadow: 0 0 6px #4ade80, 0 0 12px rgba(74,222,128,0.4);
  animation: svcLedPulse 2s ease-in-out infinite;
}
@keyframes svcLedPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px #4ade80, 0 0 12px rgba(74,222,128,0.4); }
  50%       { opacity: 0.6; box-shadow: 0 0 3px #4ade80; }
}
.svc-mon-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: svcLiveBlink 1.2s ease-in-out infinite;
}
@keyframes svcLiveBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

/* Grid de câmeras */
.svc-mon-camgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}
.svc-mon-cam {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(6,128,139,0.18);
  border-radius: 10px;
  overflow: hidden;
}
.svc-mon-cam-screen {
  height: 68px;
  background: linear-gradient(135deg, #020f10 0%, #041a1d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.svc-mon-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 3px,
    rgba(6,128,139,0.04) 3px,
    rgba(6,128,139,0.04) 4px
  );
  pointer-events: none;
}
.svc-mon-rec {
  position: absolute;
  top: 5px;
  right: 7px;
  display: flex;
  align-items: center;
  gap: 3px;
}
.svc-mon-rec-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #f87171;
  animation: svcRecBlink 1.8s ease-in-out infinite;
}
@keyframes svcRecBlink {
  0%, 40%, 100% { opacity: 1; }
  70%           { opacity: 0; }
}
.svc-mon-cam-info {
  padding: 6px 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.svc-mon-cam-id {
  font-size: 0.58rem;
  font-weight: 800;
  color: rgba(6,128,139,0.9);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.svc-mon-cam-local {
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  line-height: 1.2;
}
.svc-mon-cam-status {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-top: 2px;
}
.svc-mon-cam-status--ok { color: #4ade80; }

/* Divisor */
.svc-mon-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(6,128,139,0.3), transparent);
  margin: 16px 0;
}

/* Métricas */
.svc-mon-metrics {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.svc-mon-metric {
  flex: 1;
  text-align: center;
}
.svc-mon-metric-val {
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.svc-mon-metric-lbl {
  font-size: 0.58rem;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.3;
}
.svc-mon-metric-sep {
  width: 1px;
  height: 40px;
  background: rgba(6,128,139,0.25);
  flex-shrink: 0;
}

/* Pílulas de conformidade */
.svc-mon-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.svc-mon-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(74,222,128,0.07);
  border: 1px solid rgba(74,222,128,0.18);
  border-radius: 100px;
  padding: 4px 10px;
  font-size: 0.62rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  transition: background 0.2s, border-color 0.2s;
}
.svc-mon-pill:hover {
  background: rgba(74,222,128,0.15);
  border-color: rgba(74,222,128,0.35);
  color: white;
}

/* CTA footer */
.svc-mon-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  background: linear-gradient(135deg, #06808b 0%, #065a62 100%);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  box-shadow: 0 4px 20px rgba(6,128,139,0.4);
  margin-top: 16px;
}
.svc-mon-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(6,128,139,0.55);
  filter: brightness(1.1);
  color: white;
  text-decoration: none;
}

/* Responsividade */
@media (max-width: 768px) {
  .svc-mon-camgrid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .svc-mon-cam-screen { height: 56px; }
  .svc-mon-metric-val { font-size: 1.2rem; }
}
@media (max-width: 480px) {
  .svc-mon-camgrid { grid-template-columns: 1fr 1fr; }
  .svc-mon-metrics { gap: 4px; }
  .svc-mon-monitor-panel { padding: 20px 16px; }
}
