:root {
  --primary: #2166B0;
  --primary-dark: #164A85;
  --primary-soft: #EAF3FB;
  --navy: #081B33;
  --navy-2: #0E2A4F;
  --accent: #FFC400;
  --accent-dark: #D9A400;
  --accent-foreground: #1A1406;
  --text: #14253B;
  --text-muted: #475A72;
  --border: #D9E4EE;
  --white: #FFFFFF;
  --soft: #F4F8FC;
  --whatsapp: #1FA855;
  --shadow-sm: 0 1px 2px rgba(8, 27, 51, 0.06);
  --shadow-md: 0 10px 30px rgba(8, 27, 51, 0.10);
  --shadow-lg: 0 20px 50px rgba(8, 27, 51, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --font-heading: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --header-h: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 0 0 10px 0;
  z-index: 1000;
}

.skip-link:focus {
  left: 0;
}

/* ===== Ícones ===== */
.icon {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
}

/* ===== Botões ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease;
  text-align: center;
}

.btn-lg {
  padding: 15px 32px;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

/* Fundo primário (claro) */
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--primary-dark);
  color: var(--white);
  border-color: var(--primary-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

/* Destaque */
.btn-accent {
  background: var(--accent);
  color: var(--accent-foreground);
  border-color: var(--accent);
}

.btn-accent:hover,
.btn-accent:focus-visible {
  background: var(--accent-dark);
  color: var(--white);
  border-color: var(--accent-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

/* Fantasma sobre fundo escuro */
.btn-ghost {
  background: rgba(255, 255, 255, 0.10);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.60);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--accent);
  color: var(--accent-foreground);
  border-color: var(--accent);
}

/* WhatsApp em fundo claro */
.btn-whatsapp {
  background: rgba(31, 168, 85, 0.10);
  color: var(--whatsapp);
  border-color: rgba(31, 168, 85, 0.55);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  height: var(--header-h);
  transition: box-shadow 0.25s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo-wrap {
  display: inline-flex;
  align-items: center;
  background: var(--navy);
  padding: 6px 14px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.brand:hover .brand-logo-wrap {
  transform: translateY(-1px) scale(1.02);
  box-shadow: var(--shadow-md);
}

.brand-logo {
  height: 40px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: flex-end;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--primary);
  background: var(--primary-soft);
}

.nav-link.active {
  color: var(--primary);
  background: var(--primary-soft);
  font-weight: 600;
}

.btn-nav {
  padding: 11px 20px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 10px;
  background: var(--primary-soft);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.menu-bar {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--primary);
  border-radius: 3px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle[aria-expanded="true"] .menu-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  color: var(--white);
  padding-top: var(--header-h);
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  z-index: 0;
  transform: scale(1.08);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 65% 60% at 50% 32%, rgba(10, 61, 107, 0.2) 0%, rgba(8, 27, 51, 0.55) 55%, rgba(8, 27, 51, 0.88) 100%),
    linear-gradient(170deg, rgba(8, 27, 51, 0.72) 0%, rgba(14, 42, 79, 0.62) 45%, rgba(10, 61, 107, 0.58) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse at 50% 40%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 30%, transparent 75%);
}

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
  padding: 96px 0 64px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.1s forwards;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  color: var(--white);
  opacity: 0;
  animation: fadeUp 0.8s ease 0.25s forwards;
}

.hero-title span {
  color: var(--accent);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.92);
  max-width: 720px;
  margin: 0 auto 38px;
  font-weight: 400;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 46px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.55s forwards;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}

.hero-scroll-cue svg {
  width: 20px;
  height: 20px;
  animation: bounceDown 1.8s ease-in-out infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(6px); opacity: 1; }
}

.hero-badges li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  font-weight: 500;
}

.badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(232, 137, 12, 0.25);
  animation: pulseDot 2.2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(232, 137, 12, 0.25); }
  50% { box-shadow: 0 0 0 7px rgba(232, 137, 12, 0.12); }
}

/* ===== Seções ===== */
.section {
  padding: 96px 0;
  position: relative;
}

.section-white {
  background: var(--white);
}

.section-light {
  background: var(--soft);
}

.section-blue {
  background: linear-gradient(170deg, var(--navy) 0%, var(--navy-2) 60%, #0A3D6B 100%);
  color: var(--white);
}

/* ===== Seções com foto de fundo ===== */
.section-photo {
  position: relative;
  color: var(--white);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.section-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

.section-photo > .container {
  position: relative;
  z-index: 1;
}

.section-photo--servicos {
  background-image: url("../img/bg-servicos.jpg");
}

.section-photo--servicos::before {
  background:
    linear-gradient(170deg, rgba(8, 27, 51, 0.85) 0%, rgba(14, 42, 79, 0.82) 55%, rgba(10, 61, 107, 0.78) 100%);
}

.section-photo--contato {
  background-image: url("../img/bg-contato.jpg");
}

.section-photo--contato::before {
  background:
    linear-gradient(170deg, rgba(8, 27, 51, 0.82) 0%, rgba(14, 42, 79, 0.78) 55%, rgba(10, 61, 107, 0.74) 100%);
}

@media (max-width: 860px) {
  .section-photo {
    background-attachment: scroll;
  }
}

/* ===== Animações de rolagem ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.in-view > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: 0.55s; }
.reveal-stagger.in-view > *:nth-child(7) { transition-delay: 0.65s; }
.reveal-stagger.in-view > *:nth-child(8) { transition-delay: 0.75s; }
.reveal-stagger.in-view > *:nth-child(9) { transition-delay: 0.85s; }

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 12px;
}

.eyebrow-light {
  color: var(--accent);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 16px;
}

.title-light {
  color: var(--white);
}

.section-text {
  color: var(--text-muted);
  max-width: 680px;
}

.text-light {
  color: rgba(255, 255, 255, 0.85);
}

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

/* ===== Destaques ===== */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.highlight-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 30px 34px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.highlight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.highlight-card::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33, 102, 176, 0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.highlight-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}

.highlight-card:hover::before {
  transform: scaleX(1);
}

.highlight-card:hover::after {
  opacity: 1;
}

.highlight-number {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--soft);
  -webkit-text-stroke: 1px var(--border);
  line-height: 1;
  z-index: 0;
}

.highlight-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(140deg, var(--primary-soft), #DCEBFA);
  color: var(--primary);
  margin-bottom: 22px;
  box-shadow: 0 8px 20px rgba(33, 102, 176, 0.18);
  transition: transform 0.35s ease;
}

.highlight-card:hover .highlight-icon {
  transform: scale(1.08) rotate(-4deg);
}

.highlight-card--accent .highlight-icon {
  background: linear-gradient(140deg, #FFF3CC, #FFE58A);
  color: var(--accent-dark);
  box-shadow: 0 8px 20px rgba(255, 196, 0, 0.25);
}

.highlight-card--navy .highlight-icon {
  background: linear-gradient(140deg, #DCE7F4, #B9CEE6);
  color: var(--navy-2);
  box-shadow: 0 8px 20px rgba(8, 27, 51, 0.2);
}

.highlight-icon svg {
  width: 30px;
  height: 30px;
}

.highlight-title {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.highlight-text {
  position: relative;
  z-index: 1;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== Sobre ===== */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.sobre-text .section-title {
  margin-bottom: 20px;
}

.section-text {
  margin-bottom: 18px;
}

.check-list {
  margin: 24px 0 32px;
  display: grid;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 500;
  color: var(--text);
}

.check-list svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.check-list-light li {
  color: var(--white);
}

.check-list-light svg {
  color: var(--accent);
}

.mvv {
  display: grid;
  gap: 20px;
}

.mvv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 5px solid var(--primary);
  border-radius: var(--radius);
  padding: 26px 26px 26px 30px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease;
}

.mvv-card:hover {
  box-shadow: var(--shadow-md);
}

.mvv-visao {
  border-left-color: var(--accent);
}

.mvv-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--soft);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  margin-bottom: 14px;
}

.mvv-visao .mvv-icon {
  color: var(--accent-dark);
}

.mvv-icon svg {
  width: 24px;
  height: 24px;
}

.mvv-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.mvv-text {
  color: var(--text-muted);
  font-size: 0.94rem;
}

/* ===== Serviços ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 56px;
}

.service-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: background-color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-4px);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(232, 137, 12, 0.16);
  border: 1px solid rgba(232, 137, 12, 0.45);
  color: var(--accent);
  margin-bottom: 18px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.4;
}

.service-text {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.section-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 40px 24px;
}

.section-cta p {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}

/* ===== Segmentos ===== */
.segments-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.segment-card {
  flex: 0 1 calc((100% - 56px) / 3);
}

.segment-card {
  text-align: center;
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.segment-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.segment-media {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.segment-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.segment-card:hover .segment-media img {
  transform: scale(1.08);
}

.segment-body {
  padding: 0 26px 34px;
}

.segment-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  margin-top: -36px;
  margin-bottom: 18px;
  border: 4px solid var(--soft);
}

.segment-icon svg {
  width: 34px;
  height: 34px;
}

.segment-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.segment-text {
  color: var(--text-muted);
  font-size: 1rem;
}

/* ===== Contato ===== */
.contact-grid {
  margin-bottom: 48px;
}

.contact-info {
  display: grid;
  gap: 16px;
}

.contact-grid-single .contact-info {
  grid-template-columns: repeat(2, 1fr);
}

.contact-grid-single .contact-info .contact-item:nth-child(n + 3) {
  grid-column: 1 / -1;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 20px;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

a.contact-item:hover,
a.contact-item:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(232, 137, 12, 0.6);
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(232, 137, 12, 0.16);
  border: 1px solid rgba(232, 137, 12, 0.45);
  color: var(--accent);
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
}

.contact-label {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 4px;
}

.contact-value {
  color: var(--white);
  font-weight: 500;
  word-break: break-word;
}

/* ===== Mapa ===== */
.map-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-lg);
}

.map-frame {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.map-link {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.map-link:hover {
  background: var(--primary);
  color: var(--white);
}

.map-link svg {
  width: 18px;
  height: 18px;
}

/* ===== Rodapé ===== */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo {
  height: 44px;
  width: auto;
  margin-bottom: 18px;
}

.footer-about {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.94rem;
  max-width: 380px;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-links li {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.94rem;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

/* ===== WhatsApp flutuante ===== */
.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(31, 168, 85, 0.45);
  transition: background-color 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
}

.whatsapp-fab svg {
  width: 32px;
  height: 32px;
}

.whatsapp-fab:hover,
.whatsapp-fab:focus-visible {
  background: #17793E;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(31, 168, 85, 0.55);
}

/* ===== Rodapé MonteSite ===== */
#montesite-footer-badge {
  display: block;
}

/* ===== Responsivo ===== */
@media (max-width: 1024px) {
  .highlights-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .segment-card {
    flex: 0 1 calc((100% - 28px) / 2);
  }

  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 20px 24px 28px;
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--radius) var(--radius);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
    overflow-y: auto;
    max-height: calc(100vh - var(--header-h));
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav-link {
    display: block;
    padding: 12px 14px;
    text-align: center;
    font-size: 1rem;
  }

  .btn-nav {
    justify-content: center;
    margin-top: 8px;
  }

  .contact-grid-single .contact-info {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }

  .hero-inner {
    padding: 76px 0 56px;
  }

  .highlights-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .segment-card {
    flex: 0 1 100%;
  }

  .hero-badges {
    flex-direction: column;
    align-items: center;
  }

  .map-frame {
    height: 320px;
  }

  .brand-logo {
    height: 34px;
  }
}

/* ===== Redução de movimento ===== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
