/* ============================================================
   HOME V2 — Zenit Elevadores Homepage Redesign
   ============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  background: #f4f5f7;
  font-family: 'Archivo', sans-serif;
  color: #3c4954;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
p,
ul {
  margin: 0;
  padding: 0;
}
ul {
  list-style: none;
}
::selection {
  background: #071273;
  color: #fff;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.hv2-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================================
   HEADER
   ============================================================ */
.hv2-header {
  background: #fff;
  border-bottom: 1px solid #e4e5ea;
  position: sticky;
  top: 0;
  z-index: 50;
}
.hv2-header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hv2-logo img {
  height: 46px;
  width: auto;
}

/* -- Nav items -- */
.hv2-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.hv2-nav-item {
  font-size: 13.5px;
  font-weight: 500;
  color: #3c4954;
  transition: color 0.15s;
  white-space: nowrap;
}
.hv2-nav-item:hover {
  color: #071273;
}

.hv2-btn-contact {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff !important;
  background: #071273;
  padding: 10px 18px;
  border-radius: 2px;
  transition: background 0.15s;
  white-space: nowrap;
}
.hv2-btn-contact:hover {
  background: #0a1f8f;
}

/* -- Elevadores group (hover trigger + megamenu) -- */
.hv2-elevadores-group {
  position: static;
  height: 74px;
  display: flex;
  align-items: center;
}
.hv2-elevadores-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: default;
  font-size: 13.5px;
  font-weight: 500;
  color: #3c4954;
  transition: color 0.15s;
  white-space: nowrap;
  user-select: none;
}
.hv2-elevadores-group:hover .hv2-elevadores-trigger {
  color: #071273;
}
.hv2-caret {
  font-size: 8px;
  color: #9aa3ab;
  display: inline-block;
  transition: transform 0.15s;
  line-height: 1;
}
.hv2-elevadores-group:hover .hv2-caret {
  transform: rotate(180deg);
  color: #0b279b;
}

/* -- Mega-menu panel -- */
.hv2-megamenu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 74px;
  background: #fff;
  border-top: 1px solid #e4e5ea;
  box-shadow: 0 30px 60px -30px rgba(7, 18, 115, 0.28);
  z-index: 55;
}
.hv2-elevadores-group:hover .hv2-megamenu {
  display: block;
}

.hv2-megamenu-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 38px 40px 30px;
}
.hv2-megamenu-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
}
.hv2-mm-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0b279b;
  white-space: nowrap;
}
.hv2-mm-rule {
  flex: 1;
  height: 1px;
  background: #e4e5ea;
}
.hv2-mm-count {
  font-size: 11px;
  color: #9aa3ab;
  white-space: nowrap;
}

.hv2-mm-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 24px;
}
.hv2-mm-col {
  display: flex;
  flex-direction: column;
}

.hv2-mm-col-link {
  display: block;
  padding: 8px 10px;
  margin: 0 -10px;
  border-radius: 6px;
  transition: background 0.15s;
}
.hv2-mm-col-link:hover {
  background: #eef1fb;
}

.hv2-mm-brand {
  display: block;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hv2-mm-name {
  display: block;
  font-family: 'PT Sans Caption', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #17181c;
  line-height: 1.2;
  margin-top: 4px;
  min-height: 36px;
}
.hv2-mm-subs {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid #eef0f3;
  margin-top: 10px;
  padding-top: 10px;
}
.hv2-mm-sub {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: #4d4d4d;
  line-height: 1.2;
  padding: 7px 10px;
  margin: 0 -10px;
  border-radius: 6px;
  transition:
    background 0.15s,
    color 0.15s;
}
.hv2-mm-sub:hover {
  color: #071273;
  background: #eef1fb;
}
.hv2-mm-dot {
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}
.hv2-mm-all {
  display: block;
  text-align: right;
  font-size: 12px;
  font-weight: 600;
  color: #0b279b;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #eef0f3;
  transition: color 0.15s;
}
.hv2-mm-all:hover {
  color: #071273;
}

/* -- Mobile toggle -- */
.hv2-mobile-trigger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #3c4954;
  line-height: 1;
}
.hv2-mobile-trigger svg {
  display: block;
}

/* -- Mobile drawer -- */
.hv2-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 200;
  overflow-y: auto;
  padding: 0;
}
.hv2-mobile-menu.open {
  display: block;
}
.hv2-mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 64px;
  border-bottom: 1px solid #e4e5ea;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1;
}
.hv2-mobile-logo img {
  height: 40px;
  width: auto;
}
.hv2-mobile-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #3c4954;
  font-size: 22px;
  line-height: 1;
}
.hv2-mobile-body {
  padding: 24px 20px 40px;
}
.hv2-mobile-section {
  margin-bottom: 32px;
}
.hv2-mobile-section-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9aa3ab;
  margin-bottom: 10px;
}
.hv2-mobile-link {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #17181c;
  padding: 11px 0;
  border-bottom: 1px solid #f0f1f4;
}
.hv2-mobile-link:last-child {
  border-bottom: none;
}
.hv2-mobile-sublink {
  display: block;
  font-size: 13px;
  color: #4d4d4d;
  padding: 8px 0 8px 14px;
  border-bottom: 1px solid #f8f8fa;
}
.hv2-mobile-sublink:last-child {
  border-bottom: none;
}
.hv2-mobile-contact {
  display: block;
  text-align: center;
  font-weight: 600;
  color: #fff;
  background: #071273;
  padding: 14px;
  border-radius: 2px;
  margin-top: 24px;
  font-size: 14px;
}

/* ============================================================
   H1 BAND
   ============================================================ */
.hv2-h1-band {
  background: #fff;
  border-bottom: 1px solid #e4e5ea;
}
.hv2-h1-band-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.hv2-h1-marker {
  width: 4px;
  height: 38px;
  background: #0b279b;
  flex-shrink: 0;
  border-radius: 2px;
}
.hv2-h1-band h1 {
  font-family: 'PT Sans Caption', sans-serif;
  font-weight: 700;
  font-size: 23px;
  line-height: 1.15;
  color: #17181c;
  flex-shrink: 0;
}
.hv2-h1-divider {
  width: 1px;
  height: 34px;
  background: #e4e5ea;
  flex-shrink: 0;
}
.hv2-h1-band p {
  font-size: 14px;
  line-height: 1.55;
  color: #4d4d4d;
}

/* ============================================================
   HERO
   ============================================================ */
.hv2-hero {
  background: #fff;
  border-bottom: 1px solid #e4e5ea;
}
.hv2-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 72px;
  align-items: end;
  padding-top: 88px;
  padding-bottom: 72px;
}
.hv2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0b279b;
  margin-bottom: 26px;
}
.hv2-eyebrow::before {
  content: '';
  display: inline-block;
  width: 26px;
  height: 1px;
  background: #0b279b;
  flex-shrink: 0;
}
.hv2-hero-title {
  font-family: 'PT Sans Caption', sans-serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #17181c;
  margin-bottom: 22px;
}
.hv2-hero-desc {
  font-size: 17.5px;
  line-height: 1.6;
  color: #4d4d4d;
  max-width: 520px;
}

/* -- Transport paths -- */
.hv2-paths-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9aa3ab;
  margin-bottom: 18px;
}
.hv2-paths {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: #e4e5ea;
  border: 1px solid #e4e5ea;
  border-radius: 3px;
  overflow: hidden;
}
.hv2-path-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 15px 18px;
  transition:
    background 0.18s,
    box-shadow 0.18s,
    transform 0.18s;
}
.hv2-path-item:hover {
  background: #eef1fb;
  box-shadow: inset 3px 0 0 #071273;
  transform: translateX(3px);
}
.hv2-path-label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #17181c;
}
.hv2-path-sub {
  display: block;
  font-size: 12px;
  color: #9aa3ab;
  margin-top: 1px;
}
.hv2-path-arrow {
  color: #0b279b;
  font-size: 17px;
  flex-shrink: 0;
}

/* ============================================================
   STATS / CREDIBILITY
   ============================================================ */
.hv2-stats {
  border-top: 1px solid #e4e5ea;
}
.hv2-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.hv2-stat-item {
  padding: 26px 0 26px 24px;
  border-left: 1px solid #e4e5ea;
}
.hv2-stat-val {
  display: block;
  font-family: 'PT Sans Caption', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #17181c;
  line-height: 1;
}
.hv2-stat-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #8a939b;
  margin-top: 7px;
}

/* ============================================================
   SOLUTIONS
   ============================================================ */
.hv2-solutions {
  padding: 96px 0;
}
.hv2-solutions-header {
  max-width: 1240px;
  margin: 0 auto 44px;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.hv2-solutions-header .hv2-section-title {
  font-family: 'PT Sans Caption', sans-serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #17181c;
  margin-top: 10px;
}
.hv2-solutions-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #4d4d4d;
  max-width: 330px;
  margin-bottom: 6px;
}

.hv2-products-grid {
  max-width: 1240px;
  margin: 0 auto 44px;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  /* background: #e4e5ea;
  border: 1px solid #e4e5ea; */
  border-radius: 4px;
  overflow: hidden;
}

/* -- Product card -- */
.hv2-product-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  border-top: 3px solid var(--line-color, #071273);
  transition: background 0.15s;
}
.hv2-product-card:hover {
  background: #f6f7fb;
}
.hv2-product-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.hv2-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.hv2-product-card:hover .hv2-product-img img {
  transform: scale(1.03);
}
.hv2-product-body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.hv2-brand {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--line-color, #071273);
}
.hv2-product-card .hv2-product-name {
  font-family: 'PT Sans Caption', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.15;
  color: #17181c;
  margin: 7px 0 10px;
}
.hv2-product-cap {
  align-self: flex-start;
  font-family: 'Spline Sans Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #5c6772;
  background: #ebeef4;
  padding: 4px 9px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.hv2-product-desc {
  font-size: 13px;
  line-height: 1.55;
  color: #6a747e;
  flex: 1;
  margin-bottom: 16px;
}
.hv2-product-cta {
  font-size: 12.5px;
  font-weight: 600;
  color: #17181c;
}
.hv2-product-cta span {
  color: var(--line-color, #0b279b);
}

/* -- CTA card -- */
.hv2-cta-card {
  background: #071273;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: background 0.15s;
  border-top: 3px solid #071273;
}
.hv2-cta-card:hover {
  background: #0a1f8f;
}
.hv2-cta-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3b5bdb;
  margin-bottom: auto;
}
.hv2-cta-card .hv2-cta-title {
  font-family: 'PT Sans Caption', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.12;
  color: #fff;
  margin: 24px 0 14px;
}
.hv2-cta-link {
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
}
.hv2-cta-link span {
  color: #7ba7f7;
}

/* ============================================================
   SEGMENTS
   ============================================================ */
.hv2-segments {
  background: #fff;
  border-top: 1px solid #e4e5ea;
  border-bottom: 1px solid #e4e5ea;
}
.hv2-segments-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 88px 40px;
}
.hv2-section-eyebrow-wrap {
  margin-bottom: 42px;
}
.hv2-segments .hv2-section-title {
  font-family: 'PT Sans Caption', sans-serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #17181c;
  max-width: 640px;
  margin-top: 10px;
}
.hv2-segments-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: #e4e5ea;
  border: 1px solid #e4e5ea;
}
.hv2-segment-card {
  background: #fff;
  padding: 24px 20px 26px;
}
.hv2-segment-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 3px;
  margin-bottom: 16px;
}
.hv2-segment-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hv2-segment-card .hv2-segment-name {
  font-family: 'PT Sans Caption', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #17181c;
  margin-bottom: 3px;
}
.hv2-segment-desc {
  font-size: 11.5px;
  color: #9aa3ab;
  margin-bottom: 14px;
  line-height: 1.4;
}
.hv2-segment-links {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.hv2-segment-link {
  font-size: 12.5px;
  color: #4d5862;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 8px;
  margin: 0 -8px;
  border-radius: 5px;
  transition:
    background 0.15s,
    color 0.15s;
}
.hv2-segment-link:hover {
  color: #071273;
  background: #eef1fb;
}
.hv2-segment-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #0b279b;
  flex-shrink: 0;
}

/* ============================================================
   A ZENIT
   ============================================================ */
.hv2-azenit {
  padding: 96px 0;
}
.hv2-azenit-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}
.hv2-azenit-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
}
.hv2-azenit .hv2-section-title {
  font-family: 'PT Sans Caption', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #17181c;
  margin: 10px 0 20px;
}
.hv2-azenit-desc {
  font-size: 16px;
  line-height: 1.65;
  color: #4d4d4d;
  margin-bottom: 28px;
}
.hv2-norms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hv2-norm-chip {
  font-family: 'Spline Sans Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #5c6772;
  border: 1px solid #d7d9e0;
  padding: 7px 12px;
  border-radius: 2px;
}
.hv2-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  /* background: #e4e5ea;
  border: 1px solid #e4e5ea; */
  border-radius: 4px;
  overflow: hidden;
  align-content: start;
}
.hv2-pillar {
  background: #fff;
  padding: 28px 24px;
}
.hv2-pillar-num {
  font-family: 'PT Sans Caption', sans-serif;
  font-size: 15px;
  color: #0b279b;
  display: block;
  margin-bottom: 12px;
}
.hv2-pillar .hv2-pillar-title {
  font-size: 16px;
  font-weight: 600;
  color: #17181c;
  margin-bottom: 8px;
}
.hv2-pillar p {
  font-size: 13px;
  line-height: 1.55;
  color: #6a747e;
}

/* -- Clients -- */
.hv2-clients {
  margin-top: 64px;
}
.hv2-clients-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9aa3ab;
  margin-bottom: 18px;
}
.hv2-clients-grid {
  background: #fff;
  border: 1px solid #e4e5ea;
  border-radius: 6px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  overflow: hidden;
}
.hv2-client-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-left: 1px solid #eef0f3;
}
.hv2-client-item:first-child {
  border-left: none;
}
.hv2-client-item img {
  max-width: 100%;
  max-height: 4.375rem;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.55);
  transition: filter 0.2s;
}
.hv2-client-item:hover img {
  filter: grayscale(0) opacity(1);
}

/* ============================================================
   SEO TEXT
   ============================================================ */
.hv2-seo {
  background: #fff;
  border-top: 1px solid #e4e5ea;
}
.hv2-seo-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 88px 40px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 72px;
  align-items: start;
}
.hv2-seo-left {
  position: sticky;
  top: 120px;
}
.hv2-seo h2 {
  font-family: 'PT Sans Caption', sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: #17181c;
  margin-top: 12px;
}
.hv2-seo-p1 {
  font-size: 16px;
  line-height: 1.75;
  color: #4d4d4d;
}
.hv2-seo h3 {
  font-family: 'PT Sans Caption', sans-serif;
  font-weight: 700;
  font-size: 21px;
  line-height: 1.25;
  color: #17181c;
  margin: 38px 0 16px;
  padding-top: 30px;
  border-top: 1px solid #e4e5ea;
}
.hv2-seo-p2 {
  font-size: 16px;
  line-height: 1.75;
  color: #4d4d4d;
}

/* ============================================================
   FOOTER
   ============================================================ */
.hv2-footer {
  background: #050a52;
  color: #fff;
  font-family: 'Archivo', sans-serif;
}
.hv2-footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 64px 40px 0;
}
.hv2-footer-products-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 24px;
}
.hv2-footer-products {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 24px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.hv2-footer-prod-name {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 13px;
  transition: opacity 0.15s;
}
.hv2-footer-prod-name:hover {
  opacity: 0.7;
}
.hv2-footer-prod-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}
.hv2-footer-subs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 13px;
}
.hv2-footer-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.3;
  transition: color 0.15s;
}
.hv2-footer-sub:hover {
  color: #fff;
}

.hv2-footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 44px 0;
}
.hv2-footer-col-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}
.hv2-footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.hv2-footer-link {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.15s;
}
.hv2-footer-link:hover {
  color: #fff;
}
.hv2-footer-address {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 18px;
}
.hv2-footer-cta-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hv2-footer-btn-contact {
  font-size: 13px;
  font-weight: 600;
  color: #050a52;
  background: #fff;
  padding: 11px 18px;
  border-radius: 2px;
  transition: opacity 0.15s;
  white-space: nowrap;
}
.hv2-footer-btn-contact:hover {
  opacity: 0.9;
}
.hv2-footer-btn-wa {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  padding: 11px 18px;
  border-radius: 2px;
  transition: background 0.15s;
  white-space: nowrap;
}
.hv2-footer-btn-wa:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hv2-footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.hv2-footer-logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.hv2-footer-logo-zenit {
  font-family: 'PT Sans Caption', sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: #fff;
}
.hv2-footer-logo-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.hv2-footer-copy-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.hv2-footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}
.hv2-footer-dev-link {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}
.hv2-footer-dev-link:hover {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hv2-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .hv2-mm-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .hv2-footer-products {
    grid-template-columns: repeat(4, 1fr);
  }
  .hv2-clients-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .hv2-segments-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .hv2-footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .hv2-azenit-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hv2-solutions-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .hv2-solutions-desc {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .hv2-header-inner {
    padding: 0 20px;
  }
  .hv2-nav {
    display: none;
  }
  .hv2-mobile-trigger {
    display: block;
  }

  .hv2-h1-band-inner {
    padding: 20px;
    gap: 16px;
    flex-wrap: wrap;
  }
  .hv2-h1-divider {
    display: none;
  }
  .hv2-h1-band h1 {
    font-size: 19px;
    flex-shrink: unset;
  }
  .hv2-h1-band p {
    display: none;
  }

  .hv2-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 20px 40px;
  }
  .hv2-hero-title {
    font-size: 38px;
  }
  .hv2-hero-desc {
    font-size: 15px;
    max-width: none;
  }

  .hv2-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hv2-solutions {
    padding: 56px 0;
  }
  .hv2-solutions-header {
    padding: 0 20px;
  }
  .hv2-products-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }

  .hv2-segments-inner {
    padding: 56px 20px;
  }
  .hv2-segments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hv2-segments .hv2-section-title {
    font-size: 32px;
  }

  .hv2-azenit {
    padding: 56px 0;
  }
  .hv2-azenit-inner {
    padding: 0 20px;
  }
  .hv2-azenit .hv2-section-title {
    font-size: 30px;
  }
  .hv2-pillars {
    grid-template-columns: 1fr;
  }
  .hv2-clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hv2-seo-inner {
    grid-template-columns: 1fr;
    padding: 56px 20px;
    gap: 40px;
  }
  .hv2-seo-left {
    position: static;
  }
  .hv2-seo h2 {
    font-size: 26px;
  }

  .hv2-footer-inner {
    padding: 40px 20px 0;
  }
  .hv2-footer-products {
    grid-template-columns: repeat(2, 1fr);
  }
  .hv2-footer-cols {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 480px) {
  .hv2-hero-title {
    font-size: 30px;
  }
  .hv2-solutions-header .hv2-section-title,
  .hv2-segments .hv2-section-title,
  .hv2-azenit .hv2-section-title {
    font-size: 28px;
  }
  .hv2-products-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .hv2-segments-grid {
    grid-template-columns: 1fr;
  }
  .hv2-clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hv2-footer-products {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   BOTÕES FLUTUANTES
   ============================================================ */
.hv2-tag-contact {
  position: fixed;
  top: 350px;
  right: 30px;
  z-index: 501;
  width: 72px;
  height: 72px;
  background: url('../img/tag-contact-hover.png') no-repeat center center;
  background-size: contain;
  transition: opacity 0.2s ease;
}
.hv2-tag-contact:hover { opacity: 0.8; }
.hv2-tag-contact a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.hv2-tag-whatsapp {
  position: fixed;
  top: 440px;
  right: 35px;
  z-index: 501;
  width: 62px;
  height: 62px;
  background: #128c7e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  text-decoration: none;
  transition: background 0.2s ease, opacity 0.2s ease;
}
.hv2-tag-whatsapp:hover {
  background: #075e54;
  opacity: 1;
}

@media (max-width: 768px) {
  .hv2-tag-contact { right: 0; top: 250px; }
  .hv2-tag-whatsapp { right: 8px; top: 340px; }
}
