:root {
  --teal: #0D9488;
  --teal-dark: #0F766E;
  --teal-light: #CCFBF1;
  --slate: #0F172A;
  --slate-muted: #475569;
  --cream: #FAFAF9;
  --white: #FFFFFF;
  --gold: #D4A574;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 60px rgba(15, 23, 42, 0.15);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --header-h: 72px;
  --float-size: 56px;
  --float-bottom: 1.5rem;
  --float-side: 1.5rem;
}

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

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  font-family: var(--font-body);
  color: var(--slate);
  background: var(--white);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 3px solid #FACC15;
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: 0.85rem 1.25rem;
  background: #FACC15;
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 0 0 8px 8px;
}

.skip-link:focus {
  top: 0;
  outline: 3px solid #000;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}

.logo-desktop {
  display: flex;
  flex-direction: column;
}

.logo-mobile {
  display: none;
  flex-direction: column;
  gap: 0.05rem;
}

.logo-nome {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  transition: color 0.3s;
  white-space: nowrap;
}

.logo-cargo {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
}

.header.scrolled .logo-nome { color: var(--slate); }
.header.scrolled .logo-cargo { color: var(--slate-muted); }

.logo-marca {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  transition: color 0.3s;
}

.header.scrolled .logo-marca { color: var(--slate); }

.logo-sub {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}

.header.scrolled .logo-sub { color: var(--slate-muted); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}

.header.scrolled .nav-links a { color: var(--slate-muted); }
.nav-links a:hover { color: var(--teal); }

.header-actions { display: flex; gap: 0.75rem; align-items: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  min-height: 48px;
  min-width: 48px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--teal);
  color: white;
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);
}

.btn-primary:hover {
  background: var(--teal-dark);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.4);
}

.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: white;
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover { background: rgba(255,255,255,0.25); }

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.82rem;
}

.btn-white {
  background: white;
  color: var(--teal-dark);
  box-shadow: var(--shadow);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: background 0.3s;
}

.header.scrolled .menu-bar { background: var(--slate); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Hero Slider ── */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
}

.slides {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}

.slide.active {
  opacity: 1;
  animation: kenburns 8s ease forwards;
}

@keyframes kenburns {
  from { transform: scale(1.05); }
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.88) 0%,
    rgba(15, 118, 110, 0.55) 50%,
    rgba(15, 23, 42, 0.82) 100%
  );
  z-index: 1;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 2rem) 1.5rem 6rem;
  max-width: 1200px;
  margin: 0 auto;
  left: 0;
  right: 0;
}

.hero-badge {
  display: inline-block;
  width: fit-content;
  padding: 0.4rem 1rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
  animation: fadeUp 0.8s ease;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  animation: fadeUp 0.8s ease 0.1s both;
}

.hero-title em {
  font-style: italic;
  color: var(--teal-light);
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.3s both;
}

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

.slider-controls {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.slider-btn {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.2s, transform 0.2s;
}

.slider-prev::before,
.slider-next::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid white;
  border-left: 2px solid white;
}

.slider-prev::before {
  transform: translate(-35%, -50%) rotate(-45deg);
}

.slider-next::before {
  transform: translate(-65%, -50%) rotate(135deg);
}

.slider-btn:hover {
  background: rgba(255,255,255,0.25);
  transform: scale(1.05);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.slider-dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--teal-light);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 2rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ── Stats ── */
.stats-bar {
  background: var(--slate);
  padding: 2.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--teal-light);
  margin-bottom: 0.25rem;
}

.stat span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* ── Sections ── */
.section { padding: 5rem 0; }
.section-alt { background: var(--cream); }

.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 0.75rem;
}

.section-title em { font-style: italic; color: var(--teal); }

.section-desc {
  color: var(--slate-muted);
  max-width: 540px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ── Service Cards ── */
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

.card-servico {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s;
  display: flex;
  flex-direction: column;
}

.card-servico:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card-img-wrap {
  position: relative;
  height: 340px;
  overflow: hidden;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card-servico:hover .card-img-wrap img { transform: scale(1.08); }

.card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.5), transparent);
}

.card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 1.5rem;
  z-index: 1;
}

.card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card-titulo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate);
}

.card-resumo {
  font-size: 0.9rem;
  color: var(--slate-muted);
  flex: 1;
  line-height: 1.6;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.card-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  background: var(--teal-light);
  color: var(--teal-dark);
  border-radius: 50px;
}

.card-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.8rem 1.25rem;
  min-height: 48px;
  background: var(--teal);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.3);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.card-link:hover {
  background: var(--teal-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
}

/* ── Steps ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
}

.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--teal-light);
  line-height: 1;
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--slate);
}

.step p {
  font-size: 0.9rem;
  color: var(--slate-muted);
  line-height: 1.65;
}

/* ── Sobre ── */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.sobre-visual {
  position: relative;
}

.sobre-foto-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3 / 4;
  max-height: 560px;
}

.sobre-foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.sobre-foto-badge {
  position: absolute;
  bottom: -1.25rem;
  left: 1.5rem;
  right: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.1rem 1.35rem;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--teal);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.sobre-foto-badge strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--slate);
}

.sobre-foto-badge span {
  font-size: 0.82rem;
  color: var(--teal);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sobre-texto .section-title { text-align: left; }
.sobre-texto .section-label { display: block; }

.sobre-historia p {
  color: var(--slate-muted);
  margin-bottom: 1rem;
  line-height: 1.8;
  font-size: 1.02rem;
}

.sobre-historia strong {
  color: var(--slate);
  font-weight: 700;
}

.sobre-quote {
  margin: 1.5rem 0;
  padding: 1.25rem 1.5rem;
  background: var(--teal-light);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--teal-dark);
  line-height: 1.55;
}

.sobre-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 700;
  color: var(--slate-muted);
}

.sobre-lista {
  list-style: none;
  margin-bottom: 2rem;
  margin-top: 0.5rem;
}

.sobre-lista li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--slate);
}

.sobre-lista li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
}

/* ── CTA ── */
.cta-section {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 50%, #14B8A6 100%);
  padding: 5rem 0;
}

.cta-inner {
  text-align: center;
  color: white;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.cta-inner p {
  opacity: 0.85;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Service Page ── */
.servico-hero {
  position: relative;
  height: 50vh;
  min-height: 360px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.servico-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.85) 0%, rgba(15,23,42,0.3) 100%);
}

.servico-hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem 0 3rem;
  width: 100%;
}

.servico-hero-content .container { max-width: 800px; }

.voltar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  transition: color 0.2s;
}

.voltar-link:hover { color: white; }

.servico-hero-badge {
  display: inline-block;
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.servico-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  font-weight: 700;
}

.servico-page {
  flex: 1;
  padding: 3rem 0 4rem;
}

.servico-page-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.servico-descricao {
  font-size: 1.1rem;
  color: var(--slate-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}

.beneficio-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem;
  background: var(--cream);
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--slate);
}

.beneficio-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--teal);
  border-radius: 50%;
  position: relative;
}

.beneficio-check::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 4px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.beneficios-titulo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--slate);
}

.outros-servicos {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid #E2E8F0;
}

.outros-servicos h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.outros-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.outros-links a {
  padding: 0.5rem 1rem;
  background: var(--cream);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-muted);
  transition: background 0.2s, color 0.2s;
}

.outros-links a:hover {
  background: var(--teal-light);
  color: var(--teal-dark);
}

.servico-cta {
  background: linear-gradient(135deg, var(--slate) 0%, #1E293B 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  color: white;
}

.servico-cta h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.servico-cta p {
  opacity: 0.75;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* ── Footer ── */
.footer {
  background: var(--slate);
  color: rgba(255,255,255,0.7);
  margin-top: auto;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand .logo-marca {
  color: white;
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 280px;
}

.footer-col h4 {
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col a {
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 1.5rem;
  font-size: 0.85rem;
  opacity: 0.75;
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem 1.25rem;
}

.footer-credit {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}

.footer-credit:hover {
  color: var(--teal-light);
}

.footer-address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 0.75rem;
  color: rgba(255,255,255,0.85);
}

.footer-maps-link {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal-light);
}

.footer-maps-link:hover { text-decoration: underline; }

.footer-regioes,
.regioes-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.regiao-tag {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

/* ── Localização ── */
.localizacao-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem;
  align-items: stretch;
}

.localizacao-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.localizacao-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--slate);
}

.localizacao-card address {
  font-style: normal;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--slate-muted);
}

.localizacao-card address strong {
  color: var(--slate);
  font-size: 1.1rem;
}

.localizacao-regioes p {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--slate-muted);
  margin-bottom: 0.5rem;
}

.localizacao-regioes .regiao-tag {
  background: var(--teal-light);
  border-color: transparent;
  color: var(--teal-dark);
}

.localizacao-card .btn { align-self: flex-start; }

.btn-ghost-maps {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.25rem;
  border: 2px solid var(--teal);
  color: var(--teal-dark);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  align-self: flex-start;
  transition: background 0.2s;
}

.btn-ghost-maps:hover { background: var(--teal-light); }

.localizacao-mapa {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 360px;
  background: var(--cream);
}

.localizacao-mapa iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

.whatsapp-float {
  position: fixed;
  bottom: var(--float-bottom);
  right: var(--float-side);
  width: var(--float-size);
  height: var(--float-size);
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: 200;
  transition: transform 0.2s;
}

.whatsapp-float:hover { transform: scale(1.1); }

.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* ── Mobile Nav ── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: white;
  font-weight: 600;
}

.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  cursor: pointer;
  font-family: inherit;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .sobre-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .sobre-visual { max-width: 420px; margin: 0 auto; padding-bottom: 1.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .localizacao-grid { grid-template-columns: 1fr; }
  .localizacao-mapa { min-height: 300px; }
  .localizacao-mapa iframe { min-height: 300px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .btn-wa-header { display: none; }
  .menu-toggle { display: block; }
  .header-inner { padding: 0 1rem; gap: 0.5rem; }
  .logo-desktop { display: none; }
  .logo-mobile { display: flex; }
  .hero-scroll { display: none; }
  .hero-content { padding-bottom: 5rem; }
}

@media (max-width: 640px) {
  .footer-inner { grid-template-columns: 1fr; }
  .card-img-wrap { height: 260px; }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .stat strong { font-size: 1.5rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}

/* ══════════════════════════════════════
   ACESSIBILIDADE — baixa visão
   ══════════════════════════════════════ */

.a11y-panel {
  position: fixed;
  bottom: var(--float-bottom);
  left: var(--float-side);
  z-index: 300;
  font-family: var(--font-body);
}

.a11y-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: var(--float-size);
  height: var(--float-size);
  padding: 0;
  background: #1E3A8A;
  color: #fff;
  border: 3px solid #FACC15;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}

.a11y-toggle:hover { background: #1D4ED8; }

.a11y-toggle-text {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.a11y-menu {
  position: absolute;
  bottom: calc(100% + 0.75rem);
  left: 0;
  width: min(320px, calc(100vw - 2rem));
  background: #fff;
  border: 3px solid #1E3A8A;
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-lg);
}

.a11y-menu-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1E3A8A;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #E2E8F0;
}

.a11y-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.a11y-btn {
  display: block;
  width: 100%;
  padding: 0.85rem 1rem;
  min-height: 48px;
  background: #F1F5F9;
  color: #0F172A;
  border: 2px solid #CBD5E1;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

.a11y-btn:hover { background: #E2E8F0; border-color: #1E3A8A; }

.a11y-btn-toggle[aria-pressed="true"] {
  background: #1E3A8A;
  color: #fff;
  border-color: #1E3A8A;
}

.a11y-btn-highlight {
  background: #FEF3C7;
  border-color: #F59E0B;
  color: #78350F;
}

.a11y-btn-reset {
  font-size: 0.9rem;
  font-weight: 600;
  color: #64748B;
}

/* Modo leitura fácil */
html.a11y-easy-read body {
  letter-spacing: 0.02em;
  line-height: 1.75;
}

html.a11y-easy-read .hero-title,
html.a11y-easy-read .section-title,
html.a11y-easy-read .card-titulo {
  font-family: var(--font-body);
  font-weight: 800;
}

html.a11y-easy-read a:not(.btn):not(.a11y-btn) {
  text-decoration: underline;
  text-underline-offset: 3px;
}

html.a11y-easy-read .section-desc,
html.a11y-easy-read .card-resumo,
html.a11y-easy-read .hero-desc,
html.a11y-easy-read .servico-descricao {
  color: #334155;
  font-weight: 500;
}

html.a11y-easy-read .card-servico,
html.a11y-easy-read .step,
html.a11y-easy-read .beneficio-item {
  border: 2px solid #CBD5E1;
}

/* Alto contraste */
html.a11y-high-contrast {
  --teal: #00FFCC;
  --teal-dark: #00FFCC;
  --teal-light: #003333;
  --slate: #FFFFFF;
  --slate-muted: #EEEEEE;
  --cream: #000000;
  --white: #000000;
}

html.a11y-high-contrast body {
  background: #000 !important;
  color: #fff !important;
}

html.a11y-high-contrast .header.scrolled,
html.a11y-high-contrast .header {
  background: #000 !important;
  border-bottom: 3px solid #FFFF00;
}

html.a11y-high-contrast .logo-marca,
html.a11y-high-contrast .nav-links a,
html.a11y-high-contrast .section-title,
html.a11y-high-contrast .card-titulo,
html.a11y-high-contrast h1, html.a11y-high-contrast h2, html.a11y-high-contrast h3 {
  color: #fff !important;
}

html.a11y-high-contrast .section-desc,
html.a11y-high-contrast .card-resumo,
html.a11y-high-contrast p,
html.a11y-high-contrast li,
html.a11y-high-contrast .stat span {
  color: #fff !important;
}

html.a11y-high-contrast a {
  color: #FFFF00 !important;
}

html.a11y-high-contrast .btn-primary,
html.a11y-high-contrast .card-link {
  background: #FFFF00 !important;
  color: #000 !important;
  border: 2px solid #fff;
}

html.a11y-high-contrast .card-servico,
html.a11y-high-contrast .step,
html.a11y-high-contrast .beneficio-item,
html.a11y-high-contrast .section-alt {
  background: #111 !important;
  border: 2px solid #fff !important;
}

html.a11y-high-contrast .card-tag {
  background: #333 !important;
  color: #FFFF00 !important;
  border: 1px solid #FFFF00;
}

html.a11y-high-contrast .hero-overlay,
html.a11y-high-contrast .servico-hero-overlay {
  background: rgba(0,0,0,0.92) !important;
}

html.a11y-high-contrast .stats-bar,
html.a11y-high-contrast .footer,
html.a11y-high-contrast .cta-section,
html.a11y-high-contrast .servico-cta {
  background: #000 !important;
  border-top: 3px solid #FFFF00;
  border-bottom: 3px solid #FFFF00;
}

html.a11y-high-contrast .stat strong {
  color: #FFFF00 !important;
}

html.a11y-high-contrast .a11y-menu {
  background: #000;
  border-color: #FFFF00;
}

html.a11y-high-contrast .a11y-menu-title { color: #FFFF00; }

html.a11y-high-contrast .a11y-btn {
  background: #222;
  color: #fff;
  border-color: #fff;
}

/* Reduzir animações */
html.a11y-reduce-motion *,
html.a11y-reduce-motion *::before,
html.a11y-reduce-motion *::after {
  animation: none !important;
  transition: none !important;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

.a11y-hint {
  position: fixed;
  top: 5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 250;
  width: min(420px, calc(100vw - 2rem));
  background: #1E3A8A;
  color: #fff;
  border: 3px solid #FACC15;
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-lg);
  font-size: 1rem;
  line-height: 1.6;
}

.a11y-hint p { margin-bottom: 1rem; }

.a11y-hint button {
  width: 100%;
  padding: 0.85rem;
  min-height: 48px;
  background: #FACC15;
  color: #000;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
}
