@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500&family=Barlow+Condensed:wght@300;600;700&display=swap');

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
html { scroll-behavior: smooth; font-size: 17px; }

body {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

:root {
  --blue:    #2080c8;  /* azul — botões, acentos, links */
  --blue-dk: #14527a;  /* azul escuro — nav, hero, footer, fundos */
  --gray:    #f0f6fb;  /* fundo claro */
  --border:  #c2d9ed;
  --text:    #1a1a1a;
  --muted:   #4a6580;
  --white:   #ffffff;
  --soft:    #d6e8f5;  /* texto suave sobre fundos azuis */
  --nav-h:   64px;
}

[id] { scroll-margin-top: calc(var(--nav-h) + 32px); }

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--blue-dk);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo img { height: 32px; width: auto; display: block; }

.nav-logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}

.nav-links {
  display: flex;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--soft);
  padding: 0 16px;
  height: var(--nav-h);
  line-height: var(--nav-h);
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.ativo {
  color: var(--white);
  border-bottom-color: var(--blue);
}

/* NAV ACTIONS (direita) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* SELETOR DE IDIOMA */
.nav-lang { position: relative; }

.nav-lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--soft);
  padding: 7px 12px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
  white-space: nowrap;
}

.nav-lang-btn:hover { border-color: var(--soft); color: var(--white); }
.nav-lang-flag { font-size: 1rem; line-height: 1; }
.nav-lang-code { letter-spacing: 0.08em; }

.nav-lang-drop {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  min-width: 150px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  display: none;
  flex-direction: column;
  z-index: 200;
}

.nav-lang-drop.open { display: flex; }

.nav-lang-flag { display:flex; align-items:center; }
.flag { display:block; border-radius:2px; flex-shrink:0; }

.nav-lang-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text);
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  transition: background 0.1s;
  white-space: nowrap;
}

.nav-lang-opt:last-child { border-bottom: none; }
.nav-lang-opt:hover { background: var(--gray); }
.nav-lang-opt.active { color: var(--blue); font-weight: 500; }

/* ÁREA DO CLIENTE */
.nav-client { position: relative; }

.nav-client-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--soft);
  padding: 7px 14px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
  white-space: nowrap;
}

.nav-client-btn:hover { border-color: var(--soft); color: var(--white); }

.nav-client-drop {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  min-width: 210px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  display: none;
  flex-direction: column;
  z-index: 200;
}

.nav-client-drop.open { display: flex; }

.nav-client-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 12px 16px 8px;
  border-bottom: 1px solid var(--border);
}

.nav-client-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text);
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  transition: background 0.1s, color 0.1s;
}

.nav-client-link:last-child { border-bottom: none; }
.nav-client-link:hover { background: var(--gray); color: var(--blue); }
.nav-client-link svg { flex-shrink: 0; color: var(--muted); }

/* CTA nav */
.nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-dk);
  background: var(--white);
  padding: 9px 20px;
  white-space: nowrap;
  transition: background 0.15s;
  flex-shrink: 0;
}

.nav-cta:hover { background: var(--gray); }


.wa-float {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  padding: 5px 12px 5px 8px;
  border-radius: 40px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  transition: transform 0.2s, box-shadow 0.2s;
}

.wa-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

.wa-float svg { width: 22px; height: 22px; flex-shrink: 0; }


/* HERO */
.hero {
  min-height: 100vh;
  background: var(--blue-dk);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--nav-h) 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/fundo.jpeg') center / cover no-repeat;
  opacity: 0.1;
}

.hero-content { position: relative; max-width: 640px; }

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 10px;
}

.hero h1 span { display: block; font-weight: 300; }

.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--soft);
  max-width: 460px;
  line-height: 1.75;
  margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* PAGE HERO */
.page-hero {
  background: var(--blue-dk);
  padding: calc(var(--nav-h) + 48px) 48px 56px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(214,232,245,0.4);
  margin-bottom: 20px;
}

.breadcrumb a { color: rgba(214,232,245,0.4); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--soft); }
.breadcrumb span { color: var(--soft); }

.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 14px;
}

.page-hero h1 span { font-weight: 300; }

.page-hero p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--soft);
  max-width: 520px;
  line-height: 1.75;
}

/* SEÇÕES */
.section       { padding: 80px 48px; }
.section--gray { background: var(--gray); }
.section--blue { background: var(--blue-dk); }

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

.section--blue .section-label { color: var(--soft); }

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--blue-dk);
  line-height: 1.1;
  margin-bottom: 18px;
}

.section-title span { font-weight: 300; }
.section-title--white { color: var(--white); }

.section-body {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.8;
}

/* GRIDS */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); }

/* DIVISOR */
.divider { height: 1px; background: var(--border); margin: 0 48px; }

/* BOTÕES */
.btn {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 30px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.btn--primary { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn--primary:hover { background: var(--blue-dk); border-color: var(--blue-dk); }

.btn--outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn--outline:hover { background: var(--blue); color: var(--white); }

.btn--white { background: var(--white); color: var(--blue-dk); border-color: var(--white); }
.btn--white:hover { background: var(--gray); }

.btn--ghost { background: transparent; color: var(--soft); border-color: rgba(214,232,245,0.35); }
.btn--ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--soft); }

/* INLINE STATS */
.inline-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.inline-stat { display: flex; flex-direction: column; gap: 2px; }

.inline-stat-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}

.inline-stat-lbl { font-size: 0.78rem; color: var(--muted); }

/* FEATURE LIST */
.feature-list { list-style: none; margin-top: 12px; }

.feature-list li {
  font-size: 0.9rem;
  color: var(--text);
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.5;
}

.feature-list li::before {
  content: '';
  width: 16px; height: 2px;
  background: var(--blue);
  flex-shrink: 0;
}

/* PRODUCT CARDS — dentro da seção gray */
.product-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

.product-card {
  background: var(--white);
  border-right: 1px solid var(--border);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 3px solid transparent;
  transition: background 0.15s, border-top-color 0.15s;
}

.product-card:last-child { border-right: none; }

.product-card:hover {
  background: var(--blue-dk);
  border-top-color: var(--blue);
}

.product-card-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--blue);
  transition: color 0.15s;
}

.product-card-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blue-dk);
  transition: color 0.15s;
}

.product-card-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
  transition: color 0.15s;
}

.product-card:hover .product-card-num  { color: var(--blue); }
.product-card:hover .product-card-name { color: var(--white); }
.product-card:hover .product-card-desc { color: var(--soft); }

/* NUMBERS */
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255,255,255,0.1);
}

.num-block {
  padding: 60px 40px;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.num-block:last-child { border-right: none; }

.num-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.8rem;
  font-weight: 200;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.num-lbl {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--soft);
}

/* SUBNAV */
.subnav {
  background: var(--gray);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--nav-h);
  z-index: 90;
  display: flex;
  padding: 0 48px;
  overflow-x: auto;
}

.subnav a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 14px 20px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s;
}

.subnav a:hover,
.subnav a.ativo { color: var(--blue); border-bottom-color: var(--blue); }

/* PRODUCT DETAIL */
.product-section {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}

.product-section:nth-child(even) { background: var(--gray); }

.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.product-layout.rev { direction: rtl; }
.product-layout.rev > * { direction: ltr; }

.product-index {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}

.product-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--blue-dk);
  line-height: 1;
  margin-bottom: 6px;
}

.product-name span { font-weight: 300; }

.product-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 4px 12px;
  margin-bottom: 20px;
}

.product-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.product-features { list-style: none; margin-bottom: 28px; }

.product-features li {
  font-size: 0.9rem;
  color: var(--text);
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}

.product-features li::before {
  content: '';
  width: 14px; height: 2px;
  background: var(--blue);
  flex-shrink: 0;
  margin-top: 10px;
}

.product-visual {
  background: var(--blue-dk);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-visual-label {
  position: absolute;
  bottom: 20px; left: 24px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(214,232,245,0.25);
}

/* CTA STRIP */
.cta-strip {
  background: var(--blue-dk);
  padding: 64px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-strip h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
}

.cta-strip h2 span { font-weight: 300; display: block; }

/* VALORES */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  margin-top: 48px;
}

.value-item {
  padding: 36px 28px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.value-num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.value-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--blue-dk);
  margin-bottom: 10px;
}

.value-desc {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

/* CONTATO */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info { display: flex; flex-direction: column; }

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.contact-row:last-child { border-bottom: none; }

.contact-lbl {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-val { font-size: 0.95rem; color: var(--text); }
.contact-val a { color: var(--blue); }
.contact-val a:hover { text-decoration: underline; }

/* FORMULÁRIO DE CONTATO */
.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-field { display: flex; flex-direction: column; gap: 6px; }

.form-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-input {
  font-family: 'Barlow', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text);
  background: var(--gray);
  border: 1px solid var(--border);
  padding: 13px 16px;
  outline: none;
  width: 100%;
  transition: border-color 0.15s, background 0.15s;
  -webkit-appearance: none;
}

.form-input:focus {
  background: var(--white);
  border-color: var(--blue);
}

textarea.form-input { resize: vertical; min-height: 110px; }

::placeholder { color: var(--muted); opacity: 0.7; }

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--gray);
  border: 1px solid var(--border);
}

.form-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--blue);
  cursor: pointer;
}

.form-consent label {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
  cursor: pointer;
}

.form-consent label a {
  color: var(--blue);
  text-decoration: underline;
}

.form-submit { width: 100%; text-align: center; }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-status {
  font-size: 0.85rem;
  font-weight: 400;
  padding: 0;
  min-height: 0;
}

.form-status--ok    { color: #2d6a4f; }
.form-status--error { color: #8b2020; }

/* LEGAL */
.doc-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--nav-h);
  z-index: 90;
  display: flex;
  padding: 0 48px;
  overflow-x: auto;
}

.doc-nav a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 15px 20px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s;
}

.doc-nav a:hover,
.doc-nav a.ativo { color: var(--blue); border-bottom-color: var(--blue); }

.legal-wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 64px 48px 100px;
}

.doc-header {
  padding-bottom: 28px;
  border-bottom: 2px solid var(--blue);
  margin-bottom: 48px;
}

.doc-type {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}

.doc-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--blue-dk);
  line-height: 1;
  margin-bottom: 6px;
}

.doc-meta { font-size: 0.8rem; color: var(--muted); font-weight: 300; }

.doc-section {
  margin-bottom: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--border);
}

.doc-section:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }

.doc-section-num {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 4px;
}

.doc-section h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--blue-dk);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 18px;
}

.doc-section p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 14px;
}

.doc-section p:last-child { margin-bottom: 0; }
.doc-section p strong { color: var(--text); font-weight: 500; }
.doc-section p a { color: var(--blue); text-decoration: underline; }

.doc-section ul { list-style: none; margin-bottom: 14px; }

.doc-section ul li {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--muted);
  padding: 9px 0 9px 20px;
  border-bottom: 1px solid var(--border);
  position: relative;
  line-height: 1.65;
}

.doc-section ul li:last-child { border-bottom: none; }

.doc-section ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 18px;
  width: 10px; height: 2px;
  background: var(--blue);
}

.doc-section ul li strong { color: var(--text); font-weight: 500; }

.doc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin: 16px 0;
  display: block;
  overflow-x: auto;
}

.doc-table thead tr { background: var(--blue-dk); }

.doc-table th {
  padding: 12px 16px;
  text-align: left;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--soft);
  white-space: nowrap;
}

.doc-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-weight: 300;
  line-height: 1.55;
  vertical-align: top;
}

.doc-table tr:nth-child(even) td { background: var(--gray); }
.doc-table tr:last-child td { border-bottom: none; }
.doc-table td strong { color: var(--text); font-weight: 500; }

.callout {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.75;
  padding: 16px 20px;
  margin: 16px 0;
  border-left: 3px solid;
}

.callout--info { background: var(--gray); border-color: var(--blue); color: var(--muted); }
.callout--info strong { color: var(--blue-dk); font-weight: 500; }
.callout--warn { background: #fef9ec; border-color: #c89a20; color: #7a600a; }
.callout--warn strong { color: #7a600a; font-weight: 500; }

.contact-box { background: var(--blue-dk); padding: 26px 32px; margin: 16px 0; }

.contact-box h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 16px;
}

.contact-box-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.88rem;
  flex-wrap: wrap;
  gap: 4px;
}

.contact-box-row:last-child { border-bottom: none; }
.contact-box-lbl { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--soft); opacity: 0.55; }
.contact-box-val { color: var(--soft); font-weight: 300; }
.contact-box-val a { color: var(--soft); }
.contact-box-val a:hover { color: var(--white); }

.rights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  margin: 16px 0;
}

.right-item { padding: 18px 20px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.right-title { font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--blue-dk); margin-bottom: 4px; }
.right-desc { font-size: 0.82rem; font-weight: 300; color: var(--muted); line-height: 1.6; }

.doc-separator { height: 1px; background: var(--border); margin: 64px 0; }

/* FOOTER */
.footer { background: var(--blue-dk); border-top: 1px solid rgba(255,255,255,0.07); }

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 56px 48px;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-brand img {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--soft);
  opacity: 0.45;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--soft);
  margin-bottom: 10px;
  transition: color 0.15s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy { font-size: 0.78rem; color: var(--soft); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.78rem; color: var(--soft); text-decoration: underline; text-underline-offset: 3px; transition: color 0.15s; }
.footer-legal a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .nav             { padding: 0 16px; gap: 8px; }
  .nav-links       { display: none; }
  .nav-lang-code   { display: none; }
  .nav-client-btn span { display: none; }
  .nav-client-btn  { padding: 7px 10px; }
  .wa-float span   { display: none; }
  .wa-float        { padding: 14px; border-radius: 50%; }
  .hero            { padding: var(--nav-h) 24px 64px; }
  .page-hero       { padding: calc(var(--nav-h) + 32px) 24px 40px; }
  .section         { padding: 56px 24px; }
  .divider         { margin: 0 24px; }
  .subnav          { padding: 0 24px; }
  .product-section { padding: 56px 24px; }
  .cta-strip       { padding: 48px 24px; flex-direction: column; align-items: flex-start; }
  .footer-main     { padding: 40px 24px; }
  .footer-bottom   { padding: 18px 24px; }
  .doc-nav         { padding: 0 24px; }
  .legal-wrap      { padding: 48px 24px 80px; }

  .grid-2, .grid-4, .grid-5,
  .stats-bar, .numbers-grid,
  .product-cards, .values-grid,
  .contact-grid, .rights-grid { grid-template-columns: 1fr; }

  .product-layout,
  .product-layout.rev { grid-template-columns: 1fr; direction: ltr; gap: 36px; }

  .stat            { border-right: none; border-bottom: 1px solid var(--border); }
  .num-block       { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .product-card    { border-right: none; border-bottom: 1px solid var(--border); }
  .value-item      { border-right: none; }
  .form-cols       { grid-template-columns: 1fr; }
}



.sobre-img-wrap {
  position: relative;
  overflow: hidden;
}

.sobre-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.sobre-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,82,122,0.15) 0%, transparent 60%);
  pointer-events: none;
}