:root {
  --navy: #0B2545;
  --navy-2: #12315F;
  --orange: #F4991A;
  --orange-2: #FFB347;
  --ink: #161B22;
  --grey: #5B6472;
  --bg-soft: #F5F7FA;
  --border: #E4E8EE;
  --white: #FFFFFF;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(11, 37, 69, 0.08);
  --shadow-strong: 0 20px 50px rgba(11, 37, 69, 0.18);
  font-size: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.5em;
  letter-spacing: 0.2px;
}

p { margin: 0 0 1em; color: var(--grey); }

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Topbar */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-item { color: rgba(255,255,255,0.85); }
.topbar-item:hover { color: var(--orange-2); }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
}
.logo-mark {
  display: inline-block;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.logo-mark.small { width: 30px; height: 30px; }
.logo-text strong { color: var(--orange); }

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 500;
  font-size: 0.95rem;
}
.nav a { color: var(--ink); transition: color 0.2s; }
.nav a:hover { color: var(--orange); }
.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 600;
}
.nav-cta:hover { background: #E08A0F; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover { background: #E08A0F; transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-block { width: 100%; }

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 60%, #0d2a4f 100%);
  color: var(--white);
  overflow: hidden;
  padding: 100px 0 140px;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg svg { width: 100%; height: 100%; }
.hero-inner { position: relative; z-index: 2; max-width: 720px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
  color: var(--orange-2);
  font-weight: 600;
  margin-bottom: 16px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 20px;
}
.hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-truck {
  position: absolute;
  right: 6%;
  bottom: 40px;
  width: 220px;
  opacity: 0.9;
  z-index: 2;
}
.hero-truck svg { width: 100%; height: auto; }

@media (max-width: 860px) {
  .hero-truck { display: none; }
}

/* Sections generic */
section { padding: 100px 0; }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 10px;
}
.section-sub { color: var(--grey); max-width: 620px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* Sobre */
.sobre { background: var(--bg-soft); }
.sobre-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}
.sobre-text h2 { font-size: 2.2rem; }
.sobre-text p { font-size: 1rem; }
.sobre-visual svg {
  width: 100%;
  overflow: visible;
}
@media (max-width: 900px) {
  .sobre-grid { grid-template-columns: 1fr; }
  .sobre-visual { max-width: 320px; margin: 0 auto; }
}

/* Servicos */
.servicos h2 { font-size: 2.2rem; }
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-strong); }
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #FFF3E2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 30px; height: 30px; }
.card h3 { font-size: 1.4rem; }
.card-list {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--grey);
  font-size: 0.92rem;
}
.card-list li { margin-bottom: 6px; }
.servicos-checklist {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.check-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 18px;
  border-radius: 100px;
}
.servicos-tagline {
  margin-top: 24px;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
}
.servicos-note {
  margin-top: 16px;
  text-align: center;
  font-style: italic;
  color: var(--navy-2);
  font-weight: 500;
}

/* Missão / Visão / Valores */
.mvv { background: var(--navy); padding: 70px 0; }
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mvv-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px;
}
.mvv-icon { font-size: 1.8rem; display: block; margin-bottom: 12px; }
.mvv-card h3 { color: var(--orange-2); font-size: 1.5rem; margin-bottom: 12px; }
.mvv-card p { color: rgba(255,255,255,0.75); font-size: 0.92rem; margin: 0; }
.mvv-values { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.mvv-values li { color: rgba(255,255,255,0.75); font-size: 0.88rem; }
.mvv-values strong { color: var(--white); }

@media (max-width: 900px) {
  .mvv-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .servicos-grid { grid-template-columns: 1fr; }
}

/* Clientes */
.clientes { background: var(--white); }
.clientes h2 { font-size: 2.2rem; }

.clientes-grid {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.client-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 10px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition: all 0.2s ease;
  cursor: default;
}
.client-badge:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: translateY(-3px);
}

@media (max-width: 700px) {
  .client-badge { padding: 11px 16px; font-size: 0.9rem; }
}

/* Cobertura / Mapa */
.cobertura { background: var(--bg-soft); }
.cobertura h2 { font-size: 2.2rem; }

.cobertura-panel {
  margin-top: 44px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  border: 1px solid var(--border);
}

.cobertura-toolbar {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.cobertura-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 18px;
  flex: 1 1 240px;
  min-width: 200px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.cobertura-search:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(244, 153, 26, 0.15);
}
.cobertura-search input {
  border: none;
  background: transparent;
  outline: none;
  font-family: inherit;
  font-size: 0.95rem;
  width: 100%;
  color: var(--ink);
}
.cobertura-search input::-webkit-search-cancel-button { cursor: pointer; }

.cobertura-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.cobertura-count {
  font-size: 0.85rem;
  color: var(--grey);
  white-space: nowrap;
}
.cobertura-count strong { color: var(--navy); font-size: 1rem; }

.btn-locate {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: var(--white);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 100px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s ease;
}
.btn-locate:hover { background: var(--navy-2); }
.btn-locate:disabled { opacity: 0.7; cursor: wait; }
.btn-locate.is-loading span { animation: cf-pulse 1s infinite; }

@keyframes cf-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.cobertura-status {
  margin: 0;
  padding: 12px 24px 0;
  font-size: 0.85rem;
  color: var(--navy-2);
  min-height: 1.2em;
}
.cobertura-status.is-error { color: #c0392b; }

.cobertura-body {
  position: relative;
  min-height: 620px;
}

.cobertura-map-wrap {
  position: relative;
  height: 620px;
  border-radius: 0 0 var(--radius) var(--radius);
  overflow: hidden;
  background: #E8EDF2;
}

.cobertura-map {
  height: 100%;
  width: 100%;
  z-index: 1;
}
.cobertura-map:focus {
  outline: 2px solid var(--orange);
  outline-offset: -2px;
}

.cobertura-map-loading {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(135deg, #EEF2F6 0%, #E2E8F0 100%);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 600;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.cobertura-map-loading.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.cobertura-map-loading-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(11, 37, 69, 0.15);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: cf-spin 0.8s linear infinite;
}
@keyframes cf-spin { to { transform: rotate(360deg); } }

.cobertura-map-controls {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.map-control-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: var(--white);
  color: var(--navy);
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(11, 37, 69, 0.15);
  transition: background 0.15s ease, transform 0.15s ease;
}
.map-control-btn:hover {
  background: var(--bg-soft);
  transform: scale(1.05);
}

.cobertura-map-hint {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  margin: 0;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--grey);
  box-shadow: 0 2px 8px rgba(11, 37, 69, 0.1);
  pointer-events: none;
  white-space: nowrap;
}

.cobertura-list-panel {
  position: absolute;
  top: 16px;
  right: 16px;
  bottom: 16px;
  width: min(340px, calc(100% - 32px));
  z-index: 600;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(11, 37, 69, 0.18);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.cobertura-list-panel.is-collapsed {
  transform: translateX(calc(100% + 24px));
  opacity: 0;
  pointer-events: none;
}

.cobertura-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
  flex-shrink: 0;
}
.cobertura-list-title {
  margin: 0;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}
.cobertura-list-toggle {
  border: none;
  background: transparent;
  color: var(--navy-2);
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.15s ease;
}
.cobertura-list-toggle:hover { background: rgba(11, 37, 69, 0.06); }

.cobertura-list-close {
  display: none;
  border: none;
  background: transparent;
  color: var(--grey);
  font-size: 1rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  line-height: 1;
  margin-left: auto;
}
.cobertura-list-close:hover { background: rgba(11, 37, 69, 0.06); color: var(--navy); }

.cobertura-list {
  flex: 1;
  overflow-y: auto;
  padding: 8px;
  overscroll-behavior: contain;
}

.cobertura-list-fab {
  display: none;
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 700;
  align-items: center;
  gap: 8px;
  border: none;
  background: var(--navy);
  color: var(--white);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 100px;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(11, 37, 69, 0.3);
  transition: background 0.15s ease, transform 0.15s ease;
}
.cobertura-list-fab:hover {
  background: var(--navy-2);
  transform: translateY(-2px);
}

.cobertura-list-panel.is-collapsed ~ .cobertura-list-fab {
  display: inline-flex;
}

.list-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.list-item-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex: 1;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.15s ease;
}
.list-item-main:hover,
.list-item-main.is-active { background: var(--bg-soft); }
.list-item-main span:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.list-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--orange);
  background: #FFF3E2;
  padding: 3px 8px;
  border-radius: 100px;
  white-space: nowrap;
}
.list-distance {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy-2);
  white-space: nowrap;
}
.list-route-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--bg-soft);
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.15s ease;
}
.list-route-btn:hover { background: #FFF3E2; }

/* Leaflet overrides */
.leaflet-div-icon {
  background: transparent !important;
  border: none !important;
}
.leaflet-container { font-family: inherit; }
.leaflet-popup-content-wrapper {
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(11, 37, 69, 0.15);
}
.leaflet-control-zoom a {
  border-radius: 8px !important;
  color: var(--navy) !important;
}
.leaflet-control-attribution {
  font-size: 0.65rem !important;
  background: rgba(255, 255, 255, 0.85) !important;
}

/* Leaflet marker/cluster custom styles */
.cf-marker span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2.5px solid var(--white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}
.cf-marker-point span { background: var(--orange); }
.cf-marker-user span {
  background: #2E7DD7;
  width: 20px;
  height: 20px;
  box-shadow: 0 0 0 6px rgba(46, 125, 215, 0.25), 0 2px 6px rgba(0, 0, 0, 0.35);
}

.cf-popup { font-size: 0.9rem; line-height: 1.5; min-width: 180px; }
.popup-distance { color: var(--orange); font-weight: 700; font-size: 0.82rem; }
.popup-route-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  background: var(--orange);
  color: var(--white);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 7px 14px;
  border-radius: 100px;
  text-decoration: none;
}
.popup-route-btn:hover { background: #E08A0F; }
.cf-cluster {
  background: rgba(244, 153, 26, 0.95);
  border: 2.5px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(244, 153, 26, 0.4);
}

.cobertura-map-wrap:fullscreen {
  border-radius: 0;
  height: 100vh;
}
.cobertura-map-wrap:fullscreen .cobertura-map-hint { bottom: 24px; }

@media (max-width: 860px) {
  .cobertura-body { min-height: 480px; }
  .cobertura-map-wrap { height: min(480px, 62vh); }
  .cobertura-map-hint { display: none; }

  .cobertura-list-panel {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: 55%;
    border-radius: 16px 16px 0 0;
    transform: translateY(100%);
    opacity: 1;
  }
  .cobertura-list-panel.is-open {
    transform: translateY(0);
    pointer-events: auto;
  }
  .cobertura-list-panel.is-collapsed {
    transform: translateY(100%);
    opacity: 1;
    pointer-events: none;
  }

  .cobertura-list-fab { display: inline-flex; }
  .cobertura-list-panel.is-open ~ .cobertura-list-fab { display: none; }
  .cobertura-list-toggle { display: none; }
  .cobertura-list-close { display: block; }

  .cobertura-toolbar { flex-direction: column; align-items: stretch; }
  .cobertura-count { text-align: center; }
}

/* Diferenciais */
.diferenciais { background: var(--navy); color: var(--white); }
.diferenciais h2 { color: var(--white); font-size: 2.2rem; }
.diferenciais .section-eyebrow { color: var(--orange-2); }
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.dif-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px;
}
.dif-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  color: var(--orange);
  font-weight: 700;
}
.dif-item h4 { color: var(--white); margin-top: 8px; }
.dif-item p { color: rgba(255,255,255,0.7); font-size: 0.92rem; margin-bottom: 0; }

@media (max-width: 900px) {
  .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .diferenciais-grid { grid-template-columns: 1fr; }
}

/* CTA strip */
.cta-strip {
  background: linear-gradient(120deg, var(--orange), var(--orange-2));
  padding: 48px 0;
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-strip h3 { color: var(--white); font-size: 1.8rem; margin-bottom: 4px; }
.cta-strip p { color: rgba(255,255,255,0.9); margin: 0; }
.cta-strip .btn-primary {
  background: var(--navy);
}
.cta-strip .btn-primary:hover { background: var(--navy-2); }

/* Contato */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contato-info h2 { font-size: 2.2rem; }
.info-list { margin-top: 32px; display: flex; flex-direction: column; gap: 22px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: #FFF3E2;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.info-item strong { display: block; color: var(--navy); margin-bottom: 4px; }
.info-item a:hover { color: var(--orange); }

.contato-form {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contato-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}
.contato-form input,
.contato-form select,
.contato-form textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--ink);
  resize: vertical;
}
.contato-form input:focus,
.contato-form select:focus,
.contato-form textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.form-note { font-size: 0.85rem; color: var(--navy-2); min-height: 1.2em; margin: 0; }

@media (max-width: 900px) {
  .contato-grid { grid-template-columns: 1fr; }
}

/* Footer */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 40px 0;
  text-align: center;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.footer-brand {
  display: flex; align-items: center; gap: 10px;
  color: var(--white); font-weight: 600;
}
.footer-brand strong { color: var(--orange); }
.footer-tagline { font-style: italic; color: rgba(255,255,255,0.6); margin: 0; }
.footer-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.85rem;
}
.footer-links a { color: rgba(255,255,255,0.75); }
.footer-links a:hover { color: var(--orange-2); }
.footer-links span { color: rgba(255,255,255,0.35); }
.footer-legal { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin: 0; }

/* Mobile nav */
@media (max-width: 860px) {
  .nav {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: 280px;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    box-shadow: var(--shadow-strong);
    transition: right 0.3s ease;
    z-index: 200;
  }
  .nav.open { right: 0; }
  .nav a { width: 100%; padding: 10px 0; }
  .nav-cta { width: 100%; text-align: center; }
  .nav-toggle { display: flex; }
}
