
:root {
  --navy: #00003c;
  --navy-light: #1a1a5e;
  --navy-muted: #4a4a7a;
  --gold: #b8a16e;
  --gold-light: #d4c49a;
  --white: #ffffff;
  --gray-bg: #f5f5f7;
  --gray-light: #f0f0f2;
  --gray-border: #e0e0e2;
  --gray-text: #6b6b6e;
  --dark-text: #1a1a1a;
  --max-width: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Open Sans', 'Noto Sans SC', sans-serif;
  color: var(--dark-text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-height);
  overflow-x: hidden;
}

body[lang="zh"] {
  font-family: 'Noto Sans SC', 'Open Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Crimson Pro', 'Noto Sans SC', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}

body[lang="zh"] h1, 
body[lang="zh"] h2, 
body[lang="zh"] h3, 
body[lang="zh"] h4, 
body[lang="zh"] h5, 
body[lang="zh"] h6 {
  font-family: 'Noto Sans SC', 'Crimson Pro', serif;
  font-weight: 700;
}

a { text-decoration: none; color: inherit; }

/* ===== HEADER ===== */
:root {
  --header-height: 88px;
  --header-height-scrolled: 80px;
}

header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-border);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: var(--header-height);
}

header.scrolled {
  height: var(--header-height-scrolled);
  box-shadow: 0 4px 20px rgba(0,0,60,0.08);
  border-bottom-color: transparent;
}

.header-inner {
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
}

/* Logo à esquerda */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
header.scrolled .logo { transform: scale(0.92); }

.logo img { height: 55px; width: auto; display: block; }
.logo-text {
  font-family: 'Crimson Pro', 'Noto Sans SC', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.5px;
}

/* Nav alinhado à esquerda (próximo ao logo) */
.nav-center {
  display: flex;
  gap: 0;
  align-items: center;
  height: 100%;
  margin-left: 2rem;
  margin-right: auto;
}

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-item > a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark-text);
  transition: color 0.25s;
  letter-spacing: 0.2px;
  padding: 0 1rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  position: relative;
}

.nav-item > a::after {
  content: '';
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  margin-top: -2px;
  opacity: 0.5;
}

.nav-item:hover > a { color: var(--navy); }
.nav-item:hover > a::after { transform: rotate(-135deg); margin-top: 2px; }

.nav-item > a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-item:hover > a::before { transform: scaleX(1); }

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateX(0) translateY(12px);
  background: var(--white);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 24px 48px rgba(0,0,60,0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-width: 720px;
  max-width: 900px;
  padding: 2rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr) 220px;
  gap: 2rem;
  border-top: 2px solid var(--gold);
}

.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0) translateY(0);
}


.mega-col h4 {
  font-family: 'Open Sans', 'Noto Sans SC', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gray-border);
}

body[lang="zh"] .mega-col h4 {
  text-transform: none;
  letter-spacing: 1px;
}

.mega-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-text);
  padding: 0.45rem 0;
  transition: all 0.2s;
  position: relative;
  padding-left: 0;
}

.mega-col a::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 3px;
  height: 14px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.2s ease;
}

.mega-col a:hover {
  color: var(--navy);
  padding-left: 8px;
}
.mega-col a:hover::before {
  transform: translateY(-50%) scaleY(1);
  left: -4px;
}

.mega-highlight {
  grid-column: span 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mega-highlight-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
}
.mega-highlight-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.mega-highlight:hover .mega-highlight-img img { transform: scale(1.05); }

.mega-highlight h5 {
  font-family: 'Open Sans', 'Noto Sans SC', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
}
.mega-highlight p {
  font-size: 0.8rem;
  color: var(--gray-text);
  line-height: 1.5;
}
.mega-highlight .link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.mega-highlight .link:hover { color: var(--gold); }

/* Header Actions */
.header-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
  z-index: 1001;
}
.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s ease;
  display: block;
  border-radius: 1px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,60,0.35);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-overlay.active {
  display: block;
  opacity: 1;
}

/* Mobile Menu Panel */
.mobile-menu-panel {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: var(--white);
  z-index: 999;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
  padding: 5rem 1.5rem 2rem;
  box-shadow: -8px 0 32px rgba(0,0,60,0.1);
}
.mobile-menu-panel.open { right: 0; }

.mobile-menu-item {
  border-bottom: 1px solid var(--gray-border);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Open Sans', 'Noto Sans SC', sans-serif;
}

.mobile-menu-header .arrow {
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}
.mobile-menu-item.open .arrow {
  transform: rotate(-135deg);
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.mobile-menu-item.open .mobile-submenu {
  max-height: min(2400px, 85vh);
  overflow-y: auto;
}

.mobile-submenu h4 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--navy-muted);
  margin: 1rem 0 0.5rem;
  font-weight: 700;
}
body[lang="zh"] .mobile-submenu h4 {
  text-transform: none;
  letter-spacing: 1px;
}
.mobile-submenu a {
  display: block;
  padding: 0.6rem 0 0.6rem 1rem;
  font-size: 0.88rem;
  color: var(--gray-text);
  border-left: 2px solid var(--gray-border);
  transition: all 0.2s;
}
.mobile-submenu a:hover {
  color: var(--navy);
  border-left-color: var(--gold);
  padding-left: 1.25rem;
}

.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-border);
}
.mobile-actions .btn {
  justify-content: center;
  width: 100%;
  padding: 0.85rem;
  font-size: 0.9rem;
}

/* Responsive Header */
@media (max-width: 1024px) {
  .nav-center, .header-actions { display: none; }
  .mobile-toggle { display: flex; }
  .mobile-menu-panel { display: block; }

  .mega-menu {
    min-width: auto;
    max-width: none;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    padding: 1.5rem;
    gap: 1.5rem;
  }
  .mega-highlight {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
  }
  .mega-highlight-img { width: 140px; flex-shrink: 0; }
}

@media (max-width: 768px) {
  :root {
    --header-height: 76px;
    --header-height-scrolled: 72px;
  }
  .header-inner { padding: 0 1.25rem; }
  .logo img { height: 44px; }
  .mega-menu {
    grid-template-columns: 1fr;
    padding: 1.25rem;
  }
  .mega-highlight {
    flex-direction: column;
    grid-column: span 1;
  }
  .mega-highlight-img { width: 100%; }
  .mobile-menu-panel {
    width: min(88vw, 360px);
    padding: 4.75rem 1rem 1.5rem;
  }
  .mobile-menu-header {
    font-size: 0.92rem;
    padding: 0.9rem 0;
  }
  .mobile-submenu a {
    font-size: 0.86rem;
    padding: 0.55rem 0 0.55rem 0.85rem;
  }
  .mobile-actions .btn {
    min-height: 44px;
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 1.25rem;
  font-family: 'Open Sans', 'Noto Sans SC', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border: 1.5px solid var(--navy);
}
.btn-primary:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,60,0.15);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,60,0.12);
}

/* Mobile actions override */
.mobile-actions .btn {
  width: 100%;
  padding: 0.85rem;
  font-size: 0.9rem;
}

/* Hero */
.hero {
  min-height: 85vh;
  display: flex; align-items: center;
  background: var(--white);
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 2rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-content { max-width: 520px; }
.hero h1 {
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
  line-height: 1.15;
}
body[lang="zh"] .hero h1 {
  font-size: 2.4rem;
  letter-spacing: 1px;
}
.hero h1 em { font-style: italic; }
.hero p {
  font-size: 1.05rem;
  color: var(--gray-text);
  margin-bottom: 2rem;
  line-height: 1.7;
  font-weight: 400;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.85rem; font-weight: 600; color: var(--navy);
  margin-top: 1rem;
}
.hero-link:hover { color: var(--navy-muted); }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-visual .slide-img-wrap {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,60,0.1);
}
.hero-visual .slide-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.6s ease-in-out;
}

/* Slide progress */
.slide-progress {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  align-items: center;
  z-index: 2;
}
.slide-bar {
  height: 3px;
  border-radius: 2px;
  background: var(--gray-border);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
  padding: 0;
  width: 40px;
}
.slide-bar .fill {
  position: absolute;
  top: 0; left: 0; height: 100%;
  background: var(--navy);
  width: 0%;
}

/* Sections */
section { padding: 5rem 2rem; }
.container { max-width: var(--max-width); margin: 0 auto; }

.section-header {
  text-align: center; max-width: 720px;
  margin: 0 auto 3.5rem;
}
.section-header h2 {
  font-size: 2.2rem; margin-bottom: 1rem; font-weight: 600;
}
body[lang="zh"] .section-header h2 {
  font-size: 2rem;
}
.section-header p {
  color: var(--gray-text); font-size: 1.05rem; line-height: 1.7;
}
.section-label {
  display: inline-block; color: var(--navy-muted);
  font-weight: 700; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 0.75rem;
  font-family: 'Open Sans', 'Noto Sans SC', sans-serif;
}
body[lang="zh"] .section-label {
  text-transform: none;
  letter-spacing: 1px;
}

/* Servicos */
.servicos { background: var(--white); }
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.servico-card {
  background: var(--white);
  border-radius: 8px;
  padding: 1.75rem;
  border: 1px solid var(--gray-border);
  transition: all 0.3s ease;
  cursor: pointer;
}
.servico-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.servico-card .icon-wrap {
  width: 40px; height: 40px;
  background: var(--gray-bg);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  color: var(--navy); font-weight: 700; font-size: 0.9rem;
  font-family: 'Crimson Pro', 'Noto Sans SC', serif;
}
.servico-card h3 {
  font-size: 1.15rem; margin-bottom: 0.5rem; color: var(--navy);
}
.servico-card p {
  font-size: 0.9rem; color: var(--gray-text);
  line-height: 1.6; margin-bottom: 1rem;
}
.servico-card .link {
  font-size: 0.82rem; font-weight: 700; color: var(--navy);
  display: inline-flex; align-items: center; gap: 0.3rem;
}
.servico-card .link:hover { color: var(--navy-muted); }

/* Destaque */
.destaque {
  background: var(--white);
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
}
.destaque-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.destaque-img {
  width: 100%; aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.destaque-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.destaque-content h2 {
  font-size: 2rem; margin-bottom: 1rem;
}
.destaque-content > p {
  color: var(--gray-text); font-size: 1rem;
  line-height: 1.7; margin-bottom: 1.5rem;
}
.beneficio {
  display: flex; gap: 0.75rem; align-items: flex-start;
  margin-bottom: 1rem;
}
.beneficio .b-icon {
  width: 28px; height: 28px;
  background: var(--gray-bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 0.75rem; color: var(--navy);
  font-weight: 700;
}
.beneficio h4 {
  font-family: 'Open Sans', 'Noto Sans SC', sans-serif;
  font-size: 0.9rem; font-weight: 700;
  color: var(--navy); margin-bottom: 0.2rem;
}
.beneficio p {
  font-size: 0.85rem; color: var(--gray-text); line-height: 1.5;
}

/* Facilidades */
.facilidades { background: var(--gray-bg); }
.facilidades-header {
  max-width: var(--max-width); margin: 0 auto 2.5rem;
}
.facilidades-header h2 {
  font-size: 2rem; margin-bottom: 0.5rem;
}
.facilidades-header p {
  color: var(--gray-text); font-size: 1rem;
}
.facilidades-grid {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.facilidade-card {
  background: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid var(--gray-border);
  transition: all 0.3s ease;
}
.facilidade-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.facilidade-card .f-icon {
  width: 36px; height: 36px;
  background: var(--gray-bg);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.75rem;
  color: var(--navy); font-weight: 700; font-size: 0.8rem;
  font-family: 'Crimson Pro', 'Noto Sans SC', serif;
}
.facilidade-card h4 {
  font-family: 'Open Sans', 'Noto Sans SC', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  color: var(--navy); margin-bottom: 0.35rem;
}
.facilidade-card p {
  font-size: 0.85rem; color: var(--gray-text);
  line-height: 1.5; margin-bottom: 0.75rem;
}
.facilidade-card .link {
  font-size: 0.8rem; font-weight: 700; color: var(--navy);
}
.facilidade-card .link:hover { color: var(--navy-muted); }

/* App / Digital */
.app-section { background: var(--white); }
.app-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.app-content h2 {
  font-size: 2rem; margin-bottom: 1rem;
}
.app-content > p {
  color: var(--gray-text); font-size: 1rem;
  line-height: 1.7; margin-bottom: 1.5rem;
}
.app-list {
  list-style: none; margin-bottom: 2rem;
}
.app-list li {
  padding: 0.4rem 0; font-size: 0.92rem;
  color: var(--gray-text);
  display: flex; align-items: center; gap: 0.6rem;
}
.app-list li::before {
  content: ''; width: 5px; height: 5px;
  background: var(--gold); border-radius: 50%;
  flex-shrink: 0;
}
.app-img {
  width: 100%; aspect-ratio: 16/10;
  border-radius: 8px;
  overflow: hidden;
}
.app-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Canais */
.canais { background: var(--gray-bg); }
.canais-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: var(--max-width); margin: 0 auto;
}
.canal-card {
  background: var(--navy);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  color: var(--white);
  transition: all 0.3s ease;
  min-height: 220px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.canal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,60,0.2);
}
.canal-card .canal-title {
  font-family: 'Crimson Pro', 'Noto Sans SC', serif;
  font-size: 1.3rem; font-weight: 600;
  margin-bottom: 0.75rem; color: var(--white);
}
.canal-card .canal-line {
  width: 40px; height: 2px;
  background: var(--gold); margin-bottom: 1rem;
}
.canal-card p {
  font-size: 0.88rem; color: rgba(255,255,255,0.7);
  line-height: 1.6; margin-bottom: 1.25rem;
}
.canal-card .link {
  font-size: 0.82rem; font-weight: 700;
  color: var(--gold-light);
  margin-top: auto;
}
.canal-card .link:hover { color: var(--white); }

/* Iniciativas */
.iniciativas { background: var(--white); }
.iniciativas-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--max-width); margin: 0 auto;
}
.iniciativa-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--gray-border);
  transition: all 0.3s ease;
}
.iniciativa-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.iniciativa-img {
  width: 100%; aspect-ratio: 16/9;
  overflow: hidden;
}
.iniciativa-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.iniciativa-card:hover .iniciativa-img img {
  transform: scale(1.05);
}
.iniciativa-body { padding: 1.5rem; }
.iniciativa-body h4 {
  font-family: 'Open Sans', 'Noto Sans SC', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  color: var(--navy); margin-bottom: 0.5rem;
}
.iniciativa-body p {
  font-size: 0.88rem; color: var(--gray-text);
  line-height: 1.6; margin-bottom: 1rem;
}
.iniciativa-body .link {
  font-size: 0.82rem; font-weight: 700; color: var(--navy);
}
.iniciativa-body .link:hover { color: var(--navy-muted); }

/* Solidez */
.solidez { background: var(--white); border-top: 1px solid var(--gray-border); }
.solidez-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.solidez-img {
  width: 100%; aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
}
.solidez-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.solidez-content h2 {
  font-size: 2.2rem; margin-bottom: 1rem;
  line-height: 1.2;
}
.solidez-content p {
  color: var(--gray-text); font-size: 1rem;
  line-height: 1.8; margin-bottom: 2rem;
}

/* CTA Final */
.cta-final {
  background: var(--navy); color: var(--white);
  text-align: center;
}
.cta-final h2 {
  color: var(--white); font-size: 2.2rem;
  margin-bottom: 1rem;
}
.cta-final p {
  color: rgba(255,255,255,0.75);
  max-width: 560px; margin: 0 auto 2rem;
  font-size: 1.05rem;
}

/* Footer */
footer {
  background: #0a0a1a;
  color: rgba(255,255,255,0.55);
  padding: 4rem 2rem 2rem;
}
.footer-top {
  max-width: var(--max-width); margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-col h4 {
  color: var(--white); font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 1.25rem;
  font-family: 'Open Sans', 'Noto Sans SC', sans-serif;
  font-weight: 700;
}
body[lang="zh"] .footer-col h4 {
  text-transform: none;
  letter-spacing: 1px;
}
.footer-col a {
  display: block; color: rgba(255,255,255,0.45);
  text-decoration: none; padding: 0.35rem 0;
  font-size: 0.85rem; transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  max-width: var(--max-width); margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.85rem;
}
.footer-bottom .tagline {
  color: var(--gold);
  font-family: 'Crimson Pro', 'Noto Sans SC', serif;
  font-style: italic; font-size: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-inner, .destaque-inner, .app-inner, .solidez-inner {
    grid-template-columns: 1fr; text-align: center; gap: 3rem;
  }
  .hero-content, .destaque-content, .app-content, .solidez-content {
    margin: 0 auto; max-width: 600px;
  }
  .hero-buttons, .app-list { justify-content: center; }
  .hero-visual { max-width: 500px; margin: 0 auto; }
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  .facilidades-grid { grid-template-columns: repeat(2, 1fr); }
  .canais-grid { grid-template-columns: repeat(2, 1fr); }
  .iniciativas-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-center, .header-actions { display: none; }
  .mobile-menu { display: flex; }
  .hero h1 { font-size: 2rem; }
  body[lang="zh"] .hero h1 { font-size: 1.8rem; }
  .servicos-grid, .facilidades-grid, .canais-grid, .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .section-header h2 { font-size: 1.7rem; }
  body[lang="zh"] .section-header h2 { font-size: 1.5rem; }
  .slide-progress { bottom: 1.5rem; }
}

/* Animations */
.fade-in {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== Inner pages (layout institucional) ===== */
.page-wrap { min-height: 60vh; }
.page-inner-body { background: var(--white); }
.page-inner-site { overflow-x: hidden; }

.page-breadcrumb,
.inner-crumb {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: rgba(255,255,255,0.65); margin-bottom: 1.25rem;
  font-family: 'Open Sans', 'Noto Sans SC', sans-serif;
}
.inner-crumb a { color: rgba(255,255,255,0.95); }
.inner-crumb a:hover { color: var(--gold-light); }
.inner-crumb span { color: rgba(255,255,255,0.55); }

.inner-hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  min-height: 420px;
  margin-top: 0;
}
.inner-hero-left {
  background: var(--navy);
  color: var(--white);
  padding: 6.5rem 2.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.inner-hero-h1 {
  font-family: 'Crimson Pro', 'Noto Sans SC', serif;
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--white);
}
.inner-hero-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin-bottom: 1.75rem;
}
.inner-hero-kicker {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.35rem 0.7rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Open Sans', 'Noto Sans SC', sans-serif;
}
.inner-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}
.inner-hero-link {
  color: rgba(255,255,255,0.86);
  font-size: 0.86rem;
  font-weight: 700;
}
.inner-hero-link:hover { color: var(--gold-light); }
.inner-hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2rem;
  max-width: 580px;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.13);
}
.inner-proof-item {
  background: rgba(255,255,255,0.05);
  padding: 1rem;
}
.inner-proof-item strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.inner-proof-item span {
  display: block;
  color: rgba(255,255,255,0.68);
  font-size: 0.74rem;
  line-height: 1.45;
}
.btn-hero-light {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 6px;
  border: 2px solid var(--white);
  transition: all 0.25s ease;
  font-family: 'Open Sans', 'Noto Sans SC', sans-serif;
}
.btn-hero-light:hover {
  background: transparent;
  color: var(--white);
}
.inner-hero-right {
  position: relative;
  min-height: 280px;
}
.inner-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.inner-intro-section {
  padding: 3.5rem 2rem;
  background: var(--white);
  border-bottom: 1px solid var(--gray-border);
}
.inner-intro-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.inner-intro-h {
  font-family: 'Crimson Pro', 'Noto Sans SC', serif;
  font-size: 1.65rem;
  color: var(--navy);
  margin-bottom: 1rem;
}
.inner-intro-lead {
  font-size: 1.05rem;
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.inner-intro-focus {
  font-size: 0.98rem;
  color: var(--navy-muted);
  line-height: 1.8;
}

.inner-icon-row {
  padding: 3rem 2rem;
  background: var(--gray-bg);
  border-bottom: 1px solid var(--gray-border);
}
.inner-icon-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.inner-icon-cell {
  text-align: center;
  padding: 0 0.5rem;
}
.inner-icon-circle {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--navy);
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Crimson Pro', serif;
}
.inner-icon-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-family: 'Open Sans', sans-serif;
}
.inner-icon-desc {
  font-size: 0.86rem;
  color: var(--gray-text);
  line-height: 1.55;
}

.inner-section {
  padding: 3.5rem 2rem;
}
.inner-cards-section {
  background: var(--white);
}
.inner-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}
.inner-section-label { margin-bottom: 0.75rem; }
.inner-section-title {
  font-family: 'Crimson Pro', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--navy);
  margin-bottom: 1rem;
}
.inner-section-intro {
  font-size: 1rem;
  color: var(--gray-text);
  line-height: 1.7;
}
.inner-detail-band {
  padding: 4rem 2rem;
  background: var(--white);
}
.inner-detail-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 3rem;
  align-items: start;
}
.inner-detail-copy h2,
.inner-viability-copy h2,
.inner-deliverables-head h2,
.inner-metrics-head h2 {
  font-family: 'Crimson Pro', serif;
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  color: var(--navy);
  margin-bottom: 1rem;
}
.inner-detail-copy p,
.inner-viability-copy p,
.inner-deliverables-head p,
.inner-metrics-head p {
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.inner-evidence-list {
  display: grid;
  gap: 1rem;
}
.inner-evidence-item {
  border-left: 3px solid var(--gold);
  background: var(--gray-bg);
  padding: 1rem 1.15rem;
}
.inner-evidence-item h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.inner-evidence-item p {
  color: var(--gray-text);
  font-size: 0.9rem;
  line-height: 1.6;
}
.inner-viability-section {
  padding: 4rem 2rem;
  background: var(--gray-bg);
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
}
.inner-viability-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: stretch;
}
.inner-viability-panel {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0,0,60,0.07);
}
.inner-viability-row {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--gray-border);
}
.inner-viability-row:last-child { border-bottom: 0; }
.inner-viability-row strong {
  color: var(--navy);
  font-size: 0.84rem;
}
.inner-viability-row span {
  color: var(--gray-text);
  font-size: 0.86rem;
  line-height: 1.55;
}
.inner-deliverables-section {
  padding: 4rem 2rem;
  background: var(--white);
}
.inner-deliverables-head {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}
.inner-deliverables-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.inner-deliverable-card {
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  padding: 1.25rem;
  background: var(--white);
}
.inner-deliverable-card span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  font-family: 'Crimson Pro', serif;
  font-weight: 700;
  margin-bottom: 0.85rem;
}
.inner-deliverable-card h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.96rem;
  color: var(--navy);
  margin-bottom: 0.45rem;
}
.inner-deliverable-card p {
  color: var(--gray-text);
  font-size: 0.87rem;
  line-height: 1.58;
}
.inner-metrics-section {
  padding: 4rem 2rem;
  background: #fbfbfc;
}
.inner-metrics-head {
  max-width: 700px;
  margin: 0 auto 2rem;
  text-align: center;
}
.inner-metrics-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.inner-metric-card {
  min-height: 150px;
  padding: 1.25rem;
  border: 1px solid var(--gray-border);
  background: var(--white);
  border-radius: 8px;
}
.inner-metric-card strong {
  display: block;
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.inner-metric-card span {
  color: var(--gray-text);
  font-size: 0.86rem;
  line-height: 1.55;
}
.inner-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.inner-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.inner-card:hover {
  box-shadow: 0 12px 36px rgba(0,0,60,0.08);
  transform: translateY(-3px);
}
.inner-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.inner-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner-card-body {
  padding: 1.35rem 1.25rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.inner-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-family: 'Open Sans', sans-serif;
}
.inner-card-desc {
  font-size: 0.86rem;
  color: var(--gray-text);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 1rem;
}
.inner-card-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
}
.inner-card-link:hover { color: var(--gold); }

.inner-split-feature {
  padding: 4rem 2rem;
  background: var(--gray-bg);
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
}
.inner-split-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.inner-split-text h2 {
  font-family: 'Crimson Pro', serif;
  font-size: 1.65rem;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.25;
}
.inner-split-text p {
  font-size: 0.98rem;
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.inner-split-visual {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,60,0.1);
}
.inner-split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4/3;
}

.inner-steps-dark {
  background: linear-gradient(145deg, #05051f 0%, var(--navy) 100%);
  color: var(--white);
  padding: 4rem 2rem;
}
.inner-steps-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}
.inner-steps-head h2 {
  font-family: 'Crimson Pro', serif;
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}
.inner-steps-head p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
}
.inner-steps-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.inner-step-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 1.5rem 1.25rem;
}
.inner-step-num {
  display: block;
  font-family: 'Crimson Pro', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.75rem;
  line-height: 1;
}
.inner-step-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
  margin: 0;
}

.inner-strip-cta {
  background: linear-gradient(90deg, var(--navy-light) 0%, var(--navy) 100%);
  padding: 2.25rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.inner-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.inner-strip-text h2 {
  font-family: 'Crimson Pro', serif;
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.inner-strip-text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1rem;
}
.btn-strip {
  display: inline-flex;
  padding: 0.75rem 1.5rem;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 6px;
  border: none;
}
.btn-strip:hover {
  background: var(--gold-light);
  color: var(--navy);
}
.inner-strip-deco {
  flex-shrink: 0;
}
.inner-strip-iconbox {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Crimson Pro', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--gold-light);
}

.inner-faq-section {
  padding: 4rem 2rem;
  background: var(--white);
}
.inner-faq-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}
.inner-faq-col-title h2 {
  font-family: 'Crimson Pro', serif;
  font-size: 1.65rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.inner-faq-lead {
  font-size: 0.92rem;
  color: var(--gray-text);
  line-height: 1.65;
}
.inner-faq-item {
  border-bottom: 1px solid var(--gray-border);
  padding: 0.85rem 0;
}
.inner-faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  list-style: none;
  padding: 0.35rem 0;
  font-family: 'Open Sans', sans-serif;
}
.inner-faq-item summary::-webkit-details-marker { display: none; }
.inner-faq-item summary::after {
  content: '+';
  float: right;
  font-weight: 400;
  color: var(--gray-text);
}
.inner-faq-item[open] summary::after { content: '−'; }
.inner-faq-answer {
  padding: 0.75rem 0 0.5rem;
}
.inner-faq-answer p {
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 1024px) {
  .inner-hero-split { grid-template-columns: 1fr; }
  .inner-hero-left { padding-top: 5.5rem; }
  .inner-hero-right { min-height: 260px; max-height: 380px; }
  .inner-icon-grid { grid-template-columns: repeat(2, 1fr); }
  .inner-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .inner-detail-grid, .inner-viability-grid { grid-template-columns: 1fr; }
  .inner-deliverables-grid { grid-template-columns: repeat(2, 1fr); }
  .inner-metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .inner-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .inner-split-inner { grid-template-columns: 1fr; }
  .inner-faq-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .inner-hero-left { padding-left: 1.4rem; padding-right: 1.4rem; }
  .inner-hero-proof { grid-template-columns: 1fr; }
  .inner-icon-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .inner-cards-grid { grid-template-columns: 1fr; }
  .inner-deliverables-grid { grid-template-columns: 1fr; }
  .inner-metrics-grid { grid-template-columns: 1fr; }
  .inner-viability-row { grid-template-columns: 1fr; gap: 0.35rem; }
  .inner-steps-grid { grid-template-columns: 1fr; }
  .inner-strip-inner { flex-direction: column; align-items: flex-start; }
}


/* New solutions menu */
.mega-menu.mega-menu-solutions {
  min-width: 980px;
  max-width: 1060px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 270px;
  gap: 2.2rem;
  align-items: start;
}

.mega-menu-solutions .mega-solution-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mega-menu-solutions .mega-col h4 {
  margin-bottom: 1.1rem;
  padding-bottom: 0.7rem;
}

.mega-menu-solutions .mega-solution-link {
  display: block;
  padding: 0.95rem 0 0.85rem;
  border-bottom: 1px solid var(--gray-border);
}

.mega-menu-solutions .mega-solution-link strong,
.mega-menu-solutions .mega-solution-link span,
.mega-menu-solutions .mega-solution-link em {
  display: block;
  white-space: normal;
}

.mega-menu-solutions .mega-solution-link strong {
  font-family: 'Open Sans', 'Noto Sans SC', sans-serif;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.3rem;
}

.mega-menu-solutions .mega-solution-link span {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.25rem;
}

.mega-menu-solutions .mega-solution-link em {
  color: var(--gray-text);
  font-style: normal;
  font-size: 0.85rem;
  line-height: 1.5;
}

.mega-menu-solutions .mega-highlight {
  gap: 0.8rem;
}

.mega-menu-solutions .mega-highlight h5 {
  font-size: 0.95rem;
}

.mega-menu-solutions .mega-highlight p {
  font-size: 0.8rem;
  line-height: 1.5;
}

.mega-menu-solutions .mega-highlight .link {
  font-size: 0.8rem;
}

@media (max-width: 1024px) {
  .mega-menu.mega-menu-solutions {
    min-width: auto;
    max-width: none;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
