/* ==========================================================
   COMMON.CSS — Netfocus Enterprise Services
   Shared CSS for all 47 pages (home, solutions, cases, blog, etc.)
   ========================================================== */

/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', sans-serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ========== CSS VARIABLES ========== */
:root {
  /* --- Canonical palette --- */
  --navy:       #00324D;
  --navy-light: #004466;
  --lime:       #A7BC0D;
  --lime-dark:  #8FA00A;
  --lime-glow:  rgba(167,188,13,.35);
  --white:      #FFFFFF;
  --gray-50:    #F8F9FA;
  --gray-100:   #F1F3F5;
  --gray-200:   #E9ECEF;
  --gray-400:   #ADB5BD;
  --gray-600:   #6C757D;
  --gray-800:   #343A40;

  /* --- Aliases for solution/case page variable names --- */
  --accent:  var(--lime);
  --accent2: #bdd10f;
  --navy2:   #004466;
  --off:     var(--gray-50);
  --off2:    #f5f6f4;
  --g1:      #eeeeee;
  --g2:      #e2e2e2;
  --g3:      #aaaaaa;
  --g4:      #555555;
  --g5:      #333333;
  --fd:      'Montserrat', sans-serif;
  --fb:      'Open Sans', sans-serif;

  /* --- Design tokens --- */
  --radius-sm: 4px;
  --radius:    6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --ease:      cubic-bezier(.22,1,.36,1);
  --shadow:    0 2px 12px rgba(0,50,77,.08);
  --shadow-lg: 0 8px 32px rgba(0,50,77,.12);
  --transition-base: transform .35s var(--ease), opacity .35s var(--ease),
                     background-color .35s var(--ease), box-shadow .35s var(--ease);
}

/* ========== UTILITIES ========== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 12px;
}
.section-title { font-size: 2rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.section-title--light { color: var(--white); }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ========== ARTICLE SUMMARY BOX (extracted from 27 blog posts inline styles) ========== */
.article-summary {
  background: var(--gray-50);
  border-left: 4px solid var(--lime);
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 32px;
}
.article-summary .summary-label {
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.article-summary p:last-child {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}

/* ========== ACCENT LINK (extracted from solution pages inline link styling) ========== */
.accent-link {
  color: var(--accent);
  font-weight: 600;
}

/* ========== DATA TABLE (extracted from painel-led and servicos-tecnicos inline table styles) ========== */
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,50,77,.08);
}
.data-table thead th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--fd);
  font-weight: 700;
  font-size: .85rem;
  padding: 16px 20px;
  text-align: left;
}
.data-table tbody td {
  padding: 14px 20px;
  font-size: .9rem;
  color: var(--g5, #333);
  border-bottom: 1px solid var(--g1);
}
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover { background: rgba(167,188,13,.04); }
.table-responsive { overflow-x: auto; border-radius: 12px; box-shadow: 0 4px 24px rgba(0,50,77,.08); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: .95rem;
  cursor: pointer; border: none; transition: var(--transition-base);
}
.btn-lime {
  background: var(--lime); color: var(--white);
  text-shadow: 0 1px 2px rgba(0,0,0,.4); border: 2px solid var(--white);
}
.btn-lime:hover {
  background: var(--lime-dark); transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--lime-glow);
}
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid var(--white); text-shadow: 0 1px 2px rgba(0,0,0,.4);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }

/* Solution/case page buttons */
.btn-p {
  display: inline-block; font-family: var(--fd); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; color: var(--white);
  background: var(--accent); padding: 15px 36px; border-radius: 4px;
  border: 2px solid var(--white); text-decoration: none; transition: all .3s var(--ease);
}
.btn-p:hover {
  background: var(--accent2); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(167,188,13,.3);
}
.btn-s {
  display: inline-block; font-family: var(--fd); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; color: var(--white);
  background: transparent; border: 2px solid var(--white); padding: 14px 36px;
  border-radius: 4px; text-decoration: none; margin-left: 12px; transition: all .3s var(--ease);
}
.btn-s:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: .9rem;
  color: var(--lime-dark); transition: gap .3s var(--ease);
}
.link-arrow:hover { gap: 12px; }

.card-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: .85rem;
  color: var(--lime-dark); transition: gap .3s var(--ease);
}
.card-cta:hover { gap: 10px; }

/* ========== HEADER ========== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--navy); transition: box-shadow .3s var(--ease);
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.2); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.header-logo img { height: 56px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-family: 'Montserrat', sans-serif; font-size: .85rem; font-weight: 700;
  color: rgba(255,255,255,.85); text-shadow: 0 1px 2px rgba(0,0,0,.4);
  transition: color .3s var(--ease); white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--lime); }

.nav-cta {
  padding: 10px 22px; background: var(--lime); color: var(--white);
  border-radius: var(--radius-sm); font-weight: 600; border: 2px solid var(--white);
}
.nav-cta:hover { background: var(--lime-dark); color: var(--white); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 8px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all .3s var(--ease); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--navy); padding: 32px 24px; z-index: 999; overflow-y: auto;
}
.mobile-menu.active { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  display: block; padding: 14px 0; font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem; font-weight: 700; color: rgba(255,255,255,.9);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.mobile-menu .nav-cta-mobile {
  display: inline-block; margin-top: 20px; padding: 14px 32px;
  background: var(--lime); color: var(--navy); border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif; font-weight: 600; text-align: center; border: none;
}

/* Desktop dropdown menus */
.nav-dropdown { position: relative; display: inline-flex; align-items: center; }
.dropdown-toggle { display: flex; align-items: center; gap: 6px; }
.dropdown-toggle::after {
  content: ''; display: inline-block; width: 6px; height: 6px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg); transition: transform .3s var(--ease);
}
.nav-dropdown:hover .dropdown-toggle::after { transform: rotate(-135deg); }
.dropdown-menu {
  position: absolute; top: 100%; left: 0; min-width: 220px;
  background: var(--white); border: 1px solid var(--g1); border-radius: 6px;
  padding: 12px 0; margin-top: 8px; box-shadow: 0 8px 24px rgba(0,50,77,.15);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all .3s var(--ease); z-index: 1001;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block; padding: 12px 24px; color: var(--navy); font-size: .9rem;
  font-weight: 500; transition: all .2s var(--ease); text-decoration: none;
}
.dropdown-menu a:hover { background: var(--off2); color: var(--accent); padding-left: 28px; }

/* Mobile dropdown menus */
.mobile-dropdown { display: block; }
.mobile-dropdown-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 14px 0 !important;
}
.mobile-dropdown-toggle::after {
  content: '\25BC'; font-size: .7rem; transition: transform .3s var(--ease); display: inline-block;
}
.mobile-dropdown-toggle.active::after { transform: rotate(180deg); }
.mobile-dropdown-menu { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.mobile-dropdown-menu.active { max-height: 400px; }
.mobile-dropdown-menu a {
  display: block; padding: 12px 20px; padding-left: 32px; font-size: 1rem;
  color: rgba(255,255,255,.8); border-bottom: 1px solid rgba(255,255,255,.1);
}
.mobile-dropdown-menu a:last-child { border-bottom: none; }

/* ========== HERO (shared base) ========== */
.hero {
  position: relative; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 100px 48px 80px; background: var(--navy); overflow: hidden;
}
/* Full-height hero — used only on Home page (add class="hero hero--full") */
.hero--full { min-height: 100vh; padding: 80px 48px 0; }
.hero-video {
  position: absolute; top: 0; left: -330px; width: calc(100% + 330px);
  height: 100%; object-fit: cover; z-index: 0; filter: brightness(0.4);
}
.hero-text {
  position: relative; z-index: 1; max-width: 780px; flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.hero-logo { height: 110px; width: auto; margin-bottom: 200px; margin-top: -180px; position: relative; z-index: 2; }
.hero .section-tag { color: var(--lime); margin-bottom: 16px; margin-top: 100px; }
.hero h1 {
  font-family: var(--fd); font-size: 2.8rem; font-weight: 800;
  color: var(--white); margin-bottom: 20px; text-shadow: 0 2px 16px rgba(0,0,0,.5);
}
.hero h1 em { font-style: normal; color: var(--lime); }
.hero-subtitle {
  font-size: 1.15rem; color: rgba(255,255,255,.9); margin-bottom: 32px;
  max-width: 620px; line-height: 1.7; text-shadow: 0 1px 8px rgba(0,0,0,.4);
}
.hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }

/* Solution/case hero additions */
.hero-bg {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
}
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,.45); }
.hero-inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 2; }
.hero-tag {
  display: inline-block; font-family: var(--fd); font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 24px;
}
.hero p { font-size: 17px; color: var(--g2); max-width: 620px; margin: 0 auto; line-height: 1.8; }
.hero-ctas { margin-top: 32px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-microcopy { font-size: 13px; color: rgba(255,255,255,.45); margin-top: 14px; }
.hero .btn-s { color: var(--white); border-color: rgba(255,255,255,.4); }
.hero .btn-s:hover { background: rgba(255,255,255,.15); color: var(--white); }

/* Hero stats (home) */
.hero-stats {
  position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; width: 100%; max-width: 900px; padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat { text-align: center; }
.hero-stat-number {
  display: block; font-family: 'Montserrat', sans-serif; font-size: 1.8rem;
  font-weight: 800; color: var(--lime);
}
.hero-stat-label {
  font-size: .7rem; font-weight: 700; color: rgba(255,255,255,.6);
  text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; display: block;
}

/* ========== POST HERO OVERRIDES ========== */
/* Blog post pages override the dark hero with a white background.
   Using body.post-hero-page for higher specificity instead of !important. */
.breadcrumb-bar { display: none !important; }
body .hero-category { color: var(--white); }
body.post-hero-page .post-hero .hero,
.post-hero .hero { background: var(--white); min-height: auto; padding-top: 90px; }
body.post-hero-page .post-hero,
.post-hero { background: var(--white); padding-top: 0; }
body.post-hero-page .post-hero .hero-img,
.post-hero .hero-img { display: none; }
body.post-hero-page .post-hero .hero-overlay,
.post-hero .hero-overlay { display: none; }
body.post-hero-page .post-hero .hero-image,
.post-hero .hero-image { display: block; }
body.post-hero-page .post-hero h1,
.post-hero h1 { color: var(--navy); }
body.post-hero-page .post-hero .hero-date,
body.post-hero-page .post-hero .hero-read-time,
.post-hero .hero-date,
.post-hero .hero-read-time { color: var(--gray-600); }
body.post-hero-page .post-hero .hero-author,
body.post-hero-page .post-hero .hero-author strong,
.post-hero .hero-author,
.post-hero .hero-author strong { color: var(--navy); }
body.post-hero-page .post-hero-overlay,
.post-hero-overlay { display: none; }
body.post-hero-page .post-hero-content h1,
.post-hero-content h1 { color: var(--navy); }

/* ========== BREADCRUMB ========== */
.breadcrumb { display: none !important; }

/* ========== CLIENTS BAR ========== */
.clients-bar {
  background: var(--navy); padding: 20px 48px; border-bottom: none;
}
.clients-bar .container,
.clients-bar-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.clients-bar p,
.clients-bar-label {
  font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 14px;
}
.clients-bar .badges,
.clients-badges,
.clients-grid {
  display: flex; gap: 12px; justify-content: center; align-items: center; flex-wrap: wrap;
}
.clients-badge,
.client-tag {
  padding: 6px 16px; background: rgba(255,255,255,.08); border-radius: 4px; border: 1px solid rgba(255,255,255,.12);
  font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,.65); letter-spacing: .5px;
}

/* ========== SECTION HEADER (centered) ========== */
.section-header { text-align: center; margin-bottom: 56px; }

/* ========== DORES SECTION ========== */
.dores-section { padding: 80px 0; background: #fff; }
.dores-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
  max-width: 960px; margin: 0 auto;
}
.dores-hook {
  text-align: center; margin-top: 40px;
  font-family: 'Montserrat', sans-serif; font-size: 1.2rem; font-weight: 700;
  color: var(--navy); max-width: 640px; margin-left: auto; margin-right: auto;
}
.dores-hook span { color: var(--lime); }

/* ========== DOR & OBJECAO CARDS ========== */
.dor-card {
  background: var(--white); border: 1px solid var(--g1); border-radius: 8px;
  padding: 28px 24px; transition: border-color .3s var(--ease);
}
.dor-card:hover { border-color: var(--accent); }
.dor-card h3 { font-family: var(--fd); font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.dor-card p { font-size: .9rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 0; }

/* ========== OBJECOES SECTION ========== */
.objecoes-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(0,50,77,0.03) 0%, rgba(167,188,13,0.05) 100%);
}
.objecoes-list {
  max-width: 800px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 24px;
}

.objecao-card {
  background: var(--white); border: 1px solid var(--g1); border-radius: 8px;
  padding: 28px 24px; transition: border-color .3s var(--ease);
}
.objecao-card:hover { border-color: var(--accent); }
.objecao-card h3 { font-family: var(--fd); font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.objecao-card p { font-size: .9rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 0; }

/* ========== MINI FORM (inline lead capture — light variant) ========== */
.mini-form {
  display: grid; grid-template-columns: 1fr 1fr auto; gap: 12px;
  max-width: 640px; margin: 0 auto;
}
.mini-form-input, .mini-form-select {
  width: 100%; padding: 14px 16px; border: 1px solid var(--g1); border-radius: 6px;
  font-family: 'Open Sans', sans-serif; font-size: .95rem; color: var(--navy);
  background: var(--white); transition: border-color .3s var(--ease);
}
.mini-form-input:focus, .mini-form-select:focus { outline: none; border-color: var(--accent); }
.mini-form-btn {
  padding: 14px 28px; background: var(--accent); color: var(--white);
  font-family: var(--fd); font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; border: none; border-radius: 6px; cursor: pointer;
  transition: all .3s var(--ease);
}
.mini-form-btn:hover { background: var(--accent2); transform: translateY(-2px); }

/* Dark variant (home page CTA bar) */
.mini-form--dark {
  background: var(--navy); padding: 48px 48px; border-bottom: 2px solid var(--lime);
}
.mini-form--dark .mini-form-inner {
  max-width: 680px; margin: 0 auto; text-align: center;
}
.mini-form--dark h2 {
  font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 700;
  color: var(--white); margin-bottom: 8px;
}
.mini-form--dark p {
  font-size: 14px; color: rgba(255,255,255,.6); margin-bottom: 24px;
}
.mini-form--dark form {
  display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 12px; align-items: end;
}
.mini-form--dark .mini-form-input,
.mini-form--dark .mini-form-select {
  width: 100%; padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.15); border-radius: 6px;
  background: rgba(255,255,255,.08); color: var(--white);
  font-family: 'Open Sans', sans-serif; font-size: .95rem; outline: none;
}
.mini-form--dark .mini-form-select { color: rgba(255,255,255,.6); cursor: pointer; appearance: none; }
.mini-form--dark .mini-form-select option { color: #333; background: var(--white); }
.mini-form--dark .mini-form-btn {
  padding: 12px 28px; background: var(--lime); color: var(--white);
  font-family: 'Montserrat', sans-serif; font-size: .9rem; font-weight: 700;
  border: none; border-radius: 6px; cursor: pointer; white-space: nowrap;
  transition: background .2s;
}
.mini-form--dark .mini-form-btn:hover { background: var(--lime-dark); }
.mini-form--dark .mini-form-privacy {
  font-size: 12px; color: rgba(255,255,255,.35); margin-top: 12px;
}
.mini-form--dark .mini-form-privacy a { color: var(--lime); text-decoration: underline; }
@media(max-width:768px){
  .mini-form--dark form { grid-template-columns: 1fr; }
  .mini-form--dark { padding: 36px 24px; }
}

/* ========== NUMBERS BAR ========== */
.numbers-bar { background: var(--navy); padding: 48px; text-align: center; }
.numbers-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  max-width: 900px; margin: 0 auto;
}
.numbers-grid .num { font-family: var(--fd); font-size: 32px; font-weight: 800; color: var(--accent); display: block; }
.numbers-grid .num-label { font-size: 14px; color: rgba(255,255,255,.7); margin-top: 4px; }

/* ========== SECTION (solution/case pages) ========== */
.section { padding: 80px 48px; }
.section-inner { max-width: 1120px; margin: 0 auto; }
.section.alt { background: var(--off); }
.section h2 { font-family: var(--fd); font-size: 28px; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
.section h3 { font-family: var(--fd); font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.section p { font-size: 15px; color: var(--g4); line-height: 1.8; margin-bottom: 16px; }

/* Two-column layout */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.two-col img { width: 100%; border-radius: 8px; height: 360px; object-fit: cover; }

/* Apps/card grid */
.apps-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 24px; margin-top: 32px; }
.app-card {
  background: var(--white); border: 1px solid var(--g1); border-radius: 8px;
  padding: 28px 24px; transition: all .3s var(--ease);
}
.app-card:hover { border-color: var(--accent); box-shadow: 0 8px 24px rgba(0,50,77,.08); }
.app-card h3 { font-family: var(--fd); font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.app-card p { font-size: 13px; color: var(--g4); line-height: 1.6; margin-bottom: 0; }

/* Benefits list */
.benefits-list {
  list-style: none; display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 16px; margin-top: 24px;
}
.benefits-list li {
  padding: 16px 20px; background: var(--white); border: 1px solid var(--g1);
  border-radius: 8px; font-size: 15px; color: var(--navy); font-weight: 500;
  display: flex; align-items: center; gap: 12px; transition: border-color .3s var(--ease);
}
.benefits-list li:hover { border-color: var(--accent); }
.benefits-list li::before { content: ''; flex-shrink: 0; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; }

/* Process steps */
.process {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 24px; margin-top: 32px; counter-reset: step;
}
.process-step {
  position: relative; padding: 24px; background: var(--white);
  border: 1px solid var(--g1); border-radius: 8px; counter-increment: step;
}
.process-step::before {
  content: counter(step); font-family: var(--fd); font-size: 32px;
  font-weight: 800; color: var(--accent); display: block; margin-bottom: 12px;
}
.process-step h3 { font-family: var(--fd); font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.process-step p { font-size: 13px; color: var(--g4); line-height: 1.6; margin-bottom: 0; }

/* Differentials cards (solution pages) */
.diff-card {
  background: var(--white); border: 1px solid var(--g1); border-radius: 8px;
  padding: 28px 24px; transition: all .3s var(--ease);
}
.diff-card:hover { border-color: var(--accent); box-shadow: 0 8px 24px rgba(0,50,77,.08); }
.diff-card h3 { font-family: var(--fd); font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.diff-card p { font-size: 13px; color: var(--g4); line-height: 1.6; margin-bottom: 0; }

/* FAQ (solution/case pages) */
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--g1); padding: 20px 0; }
.faq-q {
  font-family: var(--fd); font-size: 15px; font-weight: 700; color: var(--navy);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; background: none; border: none; width: 100%; text-align: left; padding: 0;
}
.faq-q::after {
  content: '+'; font-size: 22px; font-weight: 400; color: var(--accent);
  flex-shrink: 0; transition: transform .3s var(--ease);
}
.faq-item.active .faq-q::after { transform: rotate(45deg); }
.faq-a {
  font-size: 14px; color: var(--g4); line-height: 1.7;
  max-height: 0; overflow: hidden; transition: max-height .4s var(--ease), padding .4s var(--ease);
  padding-top: 0;
}
.faq-item.active .faq-a { max-height: 300px; padding-top: 14px; }

/* CTA final (solution/case) */
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-inner h2 { font-family: var(--fd); font-size: 28px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.cta-inner p { font-size: 16px; color: var(--g4); margin-bottom: 32px; line-height: 1.7; }

/* ========== FOOTER ========== */
.footer { background: #001E30; padding: 64px 0 0; color: rgba(255,255,255,.7); }
.footer-grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand { text-align: center; }
.footer-brand img { height: 56px; width: auto; object-fit: contain; margin: 0 auto 16px; display: block; }
.footer-brand p { font-size: .9rem; line-height: 1.7; max-width: 300px; margin: 0 auto; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; justify-content: center; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.1); transition: background .3s var(--ease);
}
.footer-social a:hover { background: var(--accent); }
.footer-social svg { width: 16px; height: 16px; fill: #fff; }
.footer-grid h4 {
  font-family: var(--fd); font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: rgba(255,255,255,.5); margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .9rem; color: rgba(255,255,255,.7); transition: color .2s; }
.footer-links a:hover { color: var(--accent); }
.footer-contact p { font-size: .9rem; margin-bottom: 8px; }
.footer-bottom {
  padding: 20px 0; text-align: center; font-size: .82rem; color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.5); text-decoration: underline; }
.footer-bottom a:hover { color: var(--lime); }

/* ========== FOOTER LGPD ========== */
.footer-lgpd { font-size: .78rem; color: rgba(255,255,255,.35); max-width: 600px; margin: 8px auto 0; }

/* ========== COOKIE BANNER ========== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--navy); color: rgba(255,255,255,.8); padding: 16px 24px;
  display: none; align-items: center; justify-content: center;
  gap: 16px; font-size: 13px; flex-wrap: wrap; text-align: center;
}
.cookie-banner.active { display: flex; }
.cookie-banner a { color: var(--accent); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 8px; }
.cookie-btn {
  padding: 8px 20px; border: none; border-radius: 4px;
  font-family: var(--fd); font-size: 12px; font-weight: 700;
  cursor: pointer; transition: all .2s;
}
.cookie-btn-accept { background: var(--accent); color: var(--navy); }
.cookie-btn-accept:hover { background: var(--accent2); }
.cookie-btn-reject {
  background: transparent; color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.2);
}
.cookie-btn-reject:hover { border-color: rgba(255,255,255,.4); color: var(--white); }

/* ========== SCROLL TO TOP ========== */
.scroll-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 998;
  width: 44px; height: 44px; border-radius: 50%; background: var(--navy);
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all .3s var(--ease);
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--accent); transform: translateY(-2px); }
.scroll-top svg { width: 20px; height: 20px; fill: var(--white); }

/* ========== REVEAL ANIMATIONS ========== */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .dropdown-menu { display: none; }
}

@media (max-width: 768px) {
  /* Hero */
  .hero { min-height: auto; padding: 72px 24px 56px; }
  .hero h1 { font-size: 2rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .hero-logo { height: 90px; margin-bottom: 64px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn-s { margin-left: 0; }

  /* Sections */
  .section { padding: 56px 24px; }
  .section-title { font-size: 1.6rem; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .cta-final { padding: 56px 24px; }

  /* Breadcrumb */
  .breadcrumb { display: none !important; }

  /* Clients bar */
  .clients-bar { padding: 16px 24px; }
  .clients-badges { gap: 8px; }
  .clients-badge { padding: 5px 12px; font-size: 10px; }

  /* Buttons */
  .btn-s { margin-left: 0; margin-top: 12px; }

  /* Numbers bar */
  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .numbers-bar { padding: 36px 24px; }

  /* Clients bar */
  .clients-bar { padding: 20px 24px; }

  /* Mini form */
  .mini-form { grid-template-columns: 1fr; }

  /* Dores grid */
  .dores-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Cookie */
  .cookie-banner { flex-direction: column; text-align: center; gap: 16px; }
}

/* ========== QUEM SOMOS (home page) ========== */
.quem-somos {
  min-height: 100vh; display: flex; align-items: center;
  padding: 80px 0; background: #F0F2F5;
}
.quem-somos-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.quem-somos-img { border-radius: var(--radius-md); overflow: hidden; }
.quem-somos-img img { width: 100%; height: 100%; object-fit: cover; min-height: 380px; }
.quem-somos-text p {
  color: var(--gray-600); margin-bottom: 24px; font-size: 1.05rem; line-height: 1.75;
}
.quem-somos-highlights {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px;
}
.qs-highlight { display: flex; align-items: flex-start; gap: 12px; }
.qs-highlight-icon {
  flex-shrink: 0; width: 40px; height: 40px;
  background: rgba(167,188,13,.12); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.qs-highlight-icon svg { width: 20px; height: 20px; fill: var(--lime-dark); }
.qs-highlight-text {
  font-family: 'Montserrat', sans-serif; font-size: .85rem;
  font-weight: 600; color: var(--navy); line-height: 1.4;
}
.qs-highlight-sub {
  font-family: 'Open Sans', sans-serif; font-weight: 400;
  font-size: .8rem; color: var(--gray-600); display: block; margin-top: 2px;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 32px;
}
.stat-item {
  text-align: center; padding: 20px 8px;
  background: var(--gray-50); border-radius: var(--radius);
}
.stat-number {
  font-family: 'Montserrat', sans-serif; font-size: 1.6rem;
  font-weight: 800; color: var(--navy); display: block;
}
.stat-label { font-size: .8rem; color: var(--gray-600); margin-top: 4px; }

/* ========== SOLUCOES CARDS (home page) ========== */
.solucoes { padding: 80px 0; background: #fff; }
.solucoes .section-header,
.portfolio .section-header,
.blog .section-header { text-align: center; margin-bottom: 56px; }
.cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.card {
  background: var(--white); border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-img { height: 200px; overflow: hidden; }
.card-img img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease);
}
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 24px; }
.card-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.card-body p { font-size: .9rem; color: var(--gray-600); margin-bottom: 16px; line-height: 1.6; }

/* ========== NOSSO PROCESSO / DIFERENCIAIS (home page) ========== */
.diferenciais { padding: 80px 0; background: var(--navy); }
.diferenciais .section-tag { color: var(--lime); }
.diferenciais .section-header { text-align: center; margin-bottom: 56px; }
.diferenciais .diff-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative;
}
.diferenciais .diff-grid::before {
  content: ''; position: absolute; top: 46px; left: 12%; right: 12%;
  height: 2px; background: rgba(167,188,13,.25); z-index: 0;
}
.diff-item {
  text-align: center; padding: 32px 20px; position: relative; z-index: 1;
}
.diff-step {
  width: 48px; height: 48px; margin: 0 auto 16px;
  background: var(--lime); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.2rem; color: var(--navy);
}
.diff-icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  background: rgba(167,188,13,.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.diff-icon svg { width: 28px; height: 28px; fill: var(--lime); }
.diff-item h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.diff-item p { font-size: .9rem; color: rgba(255,255,255,.7); line-height: 1.6; }

/* ========== PORTFOLIO & BLOG SECTIONS (home page) ========== */
.portfolio { padding: 80px 0; }
.portfolio-footer, .blog-footer { text-align: center; margin-top: 48px; }
.blog { padding: 80px 0; background: var(--gray-50); }
.blog .cards-grid { max-width: 960px; margin: 0 auto; }

/* ========== FAQ (home page — uses .faq-question) ========== */
.faq { padding: 80px 0; }
.faq .section-header { text-align: center; margin-bottom: 48px; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question {
  width: 100%; padding: 20px 0; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 600;
  color: var(--navy); text-align: left; transition: color .3s var(--ease);
}
.faq-question:hover { color: var(--lime-dark); }
.faq-question::after {
  content: '+'; font-size: 1.4rem; font-weight: 300; color: var(--lime);
  transition: transform .3s var(--ease); flex-shrink: 0; margin-left: 16px;
}
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease), padding .4s var(--ease);
}
.faq-answer p {
  padding-bottom: 20px; font-size: .95rem; color: var(--gray-600); line-height: 1.7;
}

/* ========== CTA FORM (home page dark form) ========== */
.cta-form-wrapper { max-width: 680px; margin: 0 auto; }
.cta-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.cta-form input, .cta-form select, .cta-form textarea {
  width: 100%; padding: 14px 16px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius); color: var(--white);
  font-family: 'Open Sans', sans-serif; font-size: .95rem;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.cta-form input::placeholder, .cta-form textarea::placeholder { color: rgba(255,255,255,.4); }
.cta-form input:focus, .cta-form select:focus, .cta-form textarea:focus {
  outline: none; border-color: var(--lime); background: rgba(255,255,255,.12);
}
.cta-form .full-width { grid-column: 1 / -1; }
.cta-form textarea { resize: vertical; min-height: 100px; }
.cta-form select option { background: var(--navy); color: var(--white); }
.cta-form .btn-submit { grid-column: 1 / -1; justify-content: center; }

/* Form feedback states */
.cta-form-submit.loading { opacity: .7; pointer-events: none; }
.cta-form-submit.loading::after {
  content: ''; width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,.3); border-top-color: var(--white);
  border-radius: 50%; animation: spin .6s linear infinite; margin-left: 8px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.form-feedback {
  grid-column: 1 / -1; padding: 14px 20px; border-radius: var(--radius);
  font-size: .9rem; text-align: center; display: none;
}
.form-feedback.success {
  display: block; background: rgba(167,188,13,.15);
  color: var(--lime); border: 1px solid rgba(167,188,13,.3);
}
.form-feedback.error {
  display: block; background: rgba(220,53,69,.15);
  color: #ff6b6b; border: 1px solid rgba(220,53,69,.3);
}
.cta-or-divider {
  display: flex; align-items: center; gap: 16px;
  margin-top: 24px; color: rgba(255,255,255,.4); font-size: .85rem;
}
.cta-or-divider::before, .cta-or-divider::after {
  content: ''; flex: 1; height: 1px; background: rgba(255,255,255,.15);
}
.cta-whatsapp-wrapper { text-align: center; margin-top: 20px; }

/* ========== FORM CARD (shared across contato, helpdesk, quem-somos, portfolio) ========== */
.form-card {
  background: var(--white); border-radius: 14px; padding: 40px;
  box-shadow: 0 2px 20px rgba(0,50,77,.07);
}
.form-card h2 { font-family: var(--fd, 'Montserrat', sans-serif); font-size: 1.5rem; margin-bottom: 8px; }
.form-card > p { color: var(--g3); font-size: .92rem; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-family: var(--fd, 'Montserrat', sans-serif); font-size: .85rem;
  font-weight: 600; color: var(--navy); margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 2px solid var(--g2, #e2e2e2); border-radius: 8px;
  font-family: var(--fb, 'Open Sans', sans-serif); font-size: .95rem; color: var(--g4);
  background: var(--white); transition: border-color .2s, box-shadow .2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(167,188,13,.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select {
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%23555'%3E%3Cpath d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%; padding: 14px 28px; background: var(--accent); color: var(--white);
  font-family: var(--fd, 'Montserrat', sans-serif); font-size: 1rem; font-weight: 700;
  border: none; border-radius: 8px; cursor: pointer;
  transition: background .2s, transform .1s; gap: 8px;
  text-transform: uppercase; letter-spacing: 1px;
}
.btn-submit:hover { background: var(--accent2, #bdd10f); transform: translateY(-1px); }
.btn-submit svg { width: 18px; height: 18px; }
.form-micro { text-align: center; font-size: 13px; color: var(--g3); margin-top: 16px; }
.lgpd-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; }
.lgpd-check input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--lime); }
.lgpd-check label { font-size: .8rem; color: var(--g3); line-height: 1.5; }
.lgpd-check a { color: var(--accent); text-decoration: underline; }

/* ========== HERO VARIANTS (video overlay, grid layout) ========== */
.hero-grid {
  display: grid; grid-template-columns: 1fr 420px; gap: 60px;
  align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.hero-sub { font-size: 16px; color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: 28px; max-width: 520px; }
.hero-trust { display: flex; flex-direction: column; gap: 10px; }
.hero-trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,.6); }
.hero-trust-item svg { width: 18px; height: 18px; fill: var(--accent); flex-shrink: 0; }
.hero-content { position: relative; z-index: 2; padding: 60px 20px; max-width: 820px; margin: 0 auto; text-align: center; }
.hero-cta-primary {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--fd, 'Montserrat', sans-serif); font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; color: var(--white);
  background: var(--accent); padding: 16px 36px; border-radius: 4px;
  transition: all .3s var(--ease); border: 2px solid var(--white);
}
.hero-cta-primary:hover { background: var(--accent2, #bdd10f); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(167,188,13,.3); }
.hero-cta-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--fd, 'Montserrat', sans-serif); font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; color: var(--white);
  background: transparent; padding: 14px 36px; border-radius: 4px;
  border: 2px solid rgba(255,255,255,.5); transition: all .3s var(--ease);
}
.hero-cta-secondary:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.hero-micro { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 16px; }

/* ========== PROOF STRIP ========== */
.proof-strip { background: var(--off, #fafafa); padding: 32px 0; border-bottom: 1px solid var(--g1); }
.proof-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; text-align: center; }
.proof-inner p {
  font-family: var(--fd, 'Montserrat', sans-serif); font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--g3); margin-bottom: 16px;
}
.proof-badges { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.proof-badge {
  padding: 8px 18px; background: var(--white); border-radius: 6px; border: 1px solid var(--g1);
  font-family: var(--fd, 'Montserrat', sans-serif); font-size: 12px; font-weight: 700;
  color: var(--g4); letter-spacing: .5px;
}

/* ========== CTA FINAL (dark bg variant) ========== */
.cta-final { padding: 80px 48px; text-align: center; background: var(--navy); }
.cta-final .cta-inner h2 { color: var(--white); }
.cta-final .cta-inner h2 em { font-style: normal; color: var(--accent); }
.cta-final .cta-inner p { color: rgba(255,255,255,.7); }

/* ========== RESPONSIVE ADDITIONS ========== */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .diferenciais .diff-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-card { max-width: 480px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .quem-somos { min-height: auto; }
  .quem-somos-grid { grid-template-columns: 1fr; gap: 36px; }
  .quem-somos-img img { min-height: 260px; }
  .quem-somos-highlights { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .diferenciais .diff-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .diferenciais .diff-grid::before { display: none; }
  .cta-form { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-final { padding: 56px 24px; }
  .proof-strip { padding: 20px 24px; }
}

/* ========== PRINT ========== */
@media print {
  .hero { min-height: auto; padding: 40px 0; }
  .hero-video { display: none; }
  body { color: #000; }
  a { color: #000; }
}
