/* Power Factor — estilos do site */

@font-face {
  font-family: "Jost";
  src: url("../fonts/jost-latin-ext.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Jost";
  src: url("../fonts/jost-latin.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --navy-950: #010b1b;
  --navy-900: #0c1a2e;
  --navy-800: #13253f;
  --blue-700: #0050d6;
  --blue-600: #0062fd;
  --blue-500: #2f7dfd;
  --blue-300: #8ab6ff;
  --blue-50: #ebf3ff;
  --ink-900: #0f1a2a;
  --ink-700: #334155;
  --ink-500: #5b6778;
  --line: #e3e8ef;
  --surface: #f5f7fa;
  --white: #fff;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgb(15 26 42 / 0.06), 0 1px 3px rgb(15 26 42 / 0.08);
  --shadow: 0 18px 40px -18px rgb(15 26 42 / 0.35);

  --container: 1200px;
  --header-h: 72px;
  --font: "Jost", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* ---------- Base ---------- */

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

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

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  margin: 0;
  color: var(--ink-900);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: var(--blue-700); text-underline-offset: 0.2em; }
button { font: inherit; color: inherit; }
address { font-style: normal; }

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 100;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--navy-900);
  color: #fff;
}
.skip-link:focus { top: 1rem; }

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

/* ---------- Botões ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.8rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}
.btn-primary { background: var(--blue-600); color: #fff; }
.btn-primary:hover { background: var(--blue-700); }
.btn-ghost { border-color: rgb(255 255 255 / 0.45); color: #fff; }
.btn-ghost:hover { border-color: #fff; background: rgb(255 255 255 / 0.1); }
.btn-sm { min-height: 42px; padding: 0.55rem 1.15rem; font-size: 0.95rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-600);
}
.eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}
.eyebrow-light { color: var(--blue-300); }

/* ---------- Cabeçalho e menu ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgb(255 255 255 / 0.94);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  backdrop-filter: saturate(1.4) blur(10px);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--header-h);
}
html:not(.js) .header-inner { flex-wrap: wrap; height: auto; padding-block: 0.75rem; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--navy-900);
  text-decoration: none;
}
.brand-logo { display: block; width: auto; height: 44px; }
@media (max-width: 380px) { .site-header .brand-logo { height: 38px; } }

.nav-toggle { display: none; }
.js .nav-toggle {
  display: inline-grid;
  place-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}
.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy-900);
  transition: transform 0.25s, opacity 0.2s;
}
.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav { display: flex; flex-direction: column; gap: 1rem; }
.nav-list { display: flex; flex-wrap: wrap; gap: 0.25rem 1rem; }
.nav-list a {
  display: block;
  padding: 0.6rem 0.2rem;
  color: var(--ink-900);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}
.nav-list a:hover,
.nav-list a[aria-current="true"] { color: var(--blue-700); }

@media (max-width: 1179.98px) {
  .js .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    max-height: calc(100dvh - var(--header-h));
    overflow: auto;
    padding: 0.5rem 1.25rem 1.5rem;
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s, transform 0.2s, visibility 0s 0.2s;
  }
  .js.nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: opacity 0.2s, transform 0.2s;
  }
  .js.nav-open body { overflow: hidden; }
  .js .nav-list { flex-direction: column; gap: 0; }
  .js .nav-list a { padding: 0.95rem 0.25rem; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .js .nav-cta { margin-top: 0.5rem; }
}

@media (min-width: 1180px) {
  .site-nav { flex-direction: row; align-items: center; gap: 1.5rem; }
  .nav-list { flex-wrap: nowrap; gap: 0.15rem; }
  .nav-list a { position: relative; padding: 0.5rem 0.7rem; }
  .nav-list a::after {
    content: "";
    position: absolute;
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.15rem;
    height: 2px;
    background: var(--blue-600);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s;
  }
  .nav-list a:hover::after,
  .nav-list a[aria-current="true"]::after { transform: scaleX(1); }
  .js .nav-toggle { display: none; }
}

/* ---------- Topo ---------- */

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: clamp(560px, 88vh, 860px);
  overflow: hidden;
  background: var(--navy-900);
  color: #fff;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% 50%;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgb(8 17 32 / 0.4) 0%, rgb(8 17 32 / 0.6) 45%, rgb(8 17 32 / 0.94) 100%);
}
@media (min-width: 900px) {
  .hero::before {
    background:
      linear-gradient(90deg, rgb(8 17 32 / 0.94) 0%, rgb(8 17 32 / 0.72) 42%, rgb(8 17 32 / 0.08) 100%),
      linear-gradient(0deg, rgb(8 17 32 / 0.7) 0%, transparent 40%);
  }
}
.hero-inner {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(4.5rem, 12vh, 8rem) 3rem;
}
.hero h1 {
  max-width: 22ch;
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.hero-lead {
  max-width: 38rem;
  margin-top: 1.25rem;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: rgb(255 255 255 / 0.86);
}
.hero-factor {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25rem 0.75rem;
  margin-top: 1rem;
  font-size: 1.05rem;
  color: rgb(255 255 255 / 0.85);
}
.hero-factor strong { font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: #fff; }
/* azul claro: por cima da fotografia o azul da marca perde-se no telemóvel */
.hero-factor strong span { color: var(--blue-300); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }

.hero-facts {
  border-top: 1px solid rgb(255 255 255 / 0.14);
  background: rgb(8 17 32 / 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.facts { display: grid; }
.facts li {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
}
.facts li:last-child { border-bottom: 0; }
.fact-icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgb(0 98 253 / 0.2);
  color: var(--blue-300);
}
.fact-icon svg { width: 22px; height: 22px; }
.fact-head { display: flex; gap: 0.9rem; align-items: center; }
.fact-title { font-size: 0.95rem; font-weight: 600; line-height: 1.3; letter-spacing: 0.18em; text-transform: uppercase; color: #fff; }
.fact-title span { display: block; margin-top: 0.15rem; font-size: 0.95rem; font-weight: 500; letter-spacing: 0; text-transform: none; color: var(--blue-300); }
.facts li > p { margin-top: 0.8rem; font-size: 0.95rem; line-height: 1.55; color: rgb(255 255 255 / 0.72); }
@media (min-width: 720px) {
  .facts { grid-template-columns: repeat(3, 1fr); }
  .facts li { padding: 1.6rem 1.75rem; border-bottom: 0; border-left: 1px solid rgb(255 255 255 / 0.12); }
  .facts li:first-child { padding-left: 0; border-left: 0; }
}

/* ---------- Secções ---------- */

.section { padding-block: clamp(4.5rem, 9vw, 7.5rem); }
.section-alt { background: var(--surface); }
.section-dark { background: var(--navy-900); color: rgb(255 255 255 / 0.78); }
.section-dark h2,
.section-dark h3 { color: #fff; }

.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.section-head h2,
.about-text h2,
.contact-info h2 { font-size: clamp(2rem, 4.2vw, 3rem); }
.section-lead { margin-top: 1rem; font-size: 1.125rem; color: var(--ink-500); }
.section-dark .section-lead { color: rgb(255 255 255 / 0.72); }
@media (min-width: 900px) {
  .section-head-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: end;
    max-width: none;
  }
  .section-head-split .section-lead { margin-top: 0; }
}

/* ---------- Empresa ---------- */

.about { display: grid; gap: 3.5rem; align-items: center; }
@media (min-width: 900px) {
  .about { grid-template-columns: 1.05fr 0.95fr; gap: clamp(3rem, 6vw, 5.5rem); }
}
.about-text h2 + p { margin-top: 1.5rem; }
.about-text p + p { margin-top: 1rem; }


.icon-badge {
  flex: none;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--blue-50);
  color: var(--blue-700);
}
.icon-badge svg { width: 22px; height: 22px; }

.about-media { position: relative; isolation: isolate; margin: 0 0.75rem 0.75rem 0; }
.about-media::before {
  content: "";
  position: absolute;
  right: -0.75rem;
  bottom: -0.75rem;
  z-index: -1;
  width: 70%;
  height: 75%;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--blue-500), var(--navy-800));
}
.about-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
@media (min-width: 900px) {
  .about-media { margin: 0 1.25rem 1.25rem 0; }
  .about-media::before { right: -1.25rem; bottom: -1.25rem; }
}

.areas-intro {
  max-width: 52rem;
  margin-top: clamp(3.5rem, 7vw, 5rem);
  font-size: 1.125rem;
  color: var(--ink-700);
}
.areas { display: grid; gap: 1.25rem; margin-top: 2rem; }
@media (min-width: 900px) { .areas { grid-template-columns: repeat(3, 1fr); } }
.area-card {
  position: relative;
  overflow: hidden;
  padding: 1.75rem 1.6rem 1.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.area-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--blue-600);
}
.area-name {
  margin-top: 1.1rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.area-focus { margin-top: 0.2rem; font-size: 0.95rem; font-weight: 500; color: var(--blue-700); }
.area-focus + p { margin-top: 0.9rem; font-size: 0.98rem; line-height: 1.6; color: var(--ink-500); }

.about-closing { display: grid; gap: 2rem; align-items: center; margin-top: clamp(3.5rem, 7vw, 5rem); }
@media (min-width: 900px) { .about-closing { grid-template-columns: 1.25fr 0.75fr; gap: clamp(3rem, 6vw, 5rem); } }
.about-closing-text p + p { margin-top: 1rem; }
.factor-card {
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy-800), var(--navy-950));
  color: #fff;
}
.factor-tagline { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--blue-300); }
.factor-title {
  margin-top: 1rem;
  font-size: clamp(2.4rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.factor-title span { color: var(--blue-500); }
.factor-sub { margin-top: 0.75rem; font-size: 1.25rem; color: rgb(255 255 255 / 0.8); }

/* ---------- Serviços ---------- */

.services-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
}
.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.service-card:hover { transform: translateY(-4px); border-color: transparent; box-shadow: var(--shadow); }
.service-media { overflow: hidden; aspect-ratio: 16 / 10; background: var(--navy-800); }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.service-card:hover .service-media img { transform: scale(1.05); }
.service-body { padding: 1.35rem 1.5rem 1.6rem; }
.service-index { display: block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue-600); }
.service-body h3 { margin-top: 0.35rem; font-size: 1.25rem; }
.service-body p { margin-top: 0.5rem; font-size: 0.98rem; line-height: 1.55; color: var(--ink-500); }

/* ---------- Parceiros e clientes ---------- */

.logo-grid { display: grid; gap: 0.9rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .logo-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1100px) { .logo-grid { grid-template-columns: repeat(8, 1fr); } }

.logo-tile {
  display: grid;
  place-items: center;
  height: 112px;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.logo-tile img {
  width: auto;
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.75;
  transition: filter 0.3s, opacity 0.3s;
}
.logo-tile:hover img { filter: none; opacity: 1; }
@media (hover: none) {
  .logo-tile img { filter: none; opacity: 1; }
}

/* ---------- KioskMDM (carrossel) ---------- */

.carousel-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.carousel-viewport::-webkit-scrollbar { display: none; }

.carousel-track { display: grid; gap: 3rem; }
.js .carousel-track { display: flex; gap: 0; }

.slide { display: grid; gap: 1.75rem; align-items: center; }
.js .slide { flex: 0 0 100%; scroll-snap-align: start; scroll-snap-stop: always; }
@media (min-width: 900px) {
  .slide { grid-template-columns: 1.35fr 1fr; gap: clamp(2rem, 5vw, 4rem); }
}

.slide-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  background: var(--navy-800);
}
.slide-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(28px) brightness(0.55) saturate(1.2);
  transform: scale(1.2);
}
.slide-image { position: relative; width: 100%; height: 100%; object-fit: contain; }

.slide-count { font-size: 0.9rem; font-weight: 600; letter-spacing: 0.1em; color: var(--blue-300); }
.slide-count span { color: #fff; }
.slide-title { margin-top: 0.6rem; font-size: clamp(1.75rem, 3.4vw, 2.6rem); }
.slide-text { max-width: 30rem; margin-top: 0.9rem; font-size: 1.125rem; color: rgb(255 255 255 / 0.75); }

.carousel-controls { display: none; }
.js .carousel-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
}
.carousel-dots { display: flex; flex: 1 1 100%; flex-wrap: wrap; align-items: center; }
@media (min-width: 600px) { .carousel-dots { flex-basis: 0; } }

.carousel-dot {
  position: relative;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
.carousel-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 5px;
  right: 5px;
  height: 4px;
  margin-top: -2px;
  border-radius: 4px;
  background: rgb(255 255 255 / 0.28);
  transition: background-color 0.2s;
}
.carousel-dot:hover::before { background: rgb(255 255 255 / 0.55); }
.carousel-dot[aria-current="true"]::before { background: var(--blue-300); }

.carousel-btn {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgb(255 255 255 / 0.25);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
}
.carousel-btn:hover { border-color: #fff; background: rgb(255 255 255 / 0.1); }
.carousel-btn svg { width: 20px; height: 20px; }
.carousel-btn .icon-play,
.carousel-btn.is-paused .icon-pause { display: none; }
.carousel-btn.is-paused .icon-play { display: block; }

.media-embed { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- Contactos ---------- */

.contact { display: grid; gap: 3rem; align-items: start; }
@media (min-width: 900px) {
  .contact { grid-template-columns: 1fr 1.1fr; gap: clamp(3rem, 6vw, 5rem); align-items: center; }
}
.contact-list { display: grid; gap: 0.9rem; margin-top: 2rem; }
.contact-list li {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.contact-list li > div { min-width: 0; }
.contact-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.contact-list a,
.contact-list address {
  display: block;
  color: var(--ink-900);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  overflow-wrap: anywhere;
}
.contact-list a:hover { color: var(--blue-700); text-decoration: underline; }

.about > *,
.contact > * { min-width: 0; }

/* Altura fixa e não aspect-ratio: com min-height, a proporção alargava a caixa para lá do ecrã no telemóvel */
.map-frame {
  position: relative;
  overflow: hidden;
  height: clamp(380px, 38vw, 480px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}
.map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-position: center;
  background-size: 36px 36px;
}
.map-pin {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--blue-600);
  color: #fff;
  box-shadow: 0 0 0 10px rgb(0 98 253 / 0.15);
}
.map-pin svg { width: 30px; height: 30px; }
.map-address { font-size: 1.1rem; font-weight: 600; color: var(--ink-900); }
.map-link { font-weight: 500; }
.map-note { font-size: 0.85rem; color: var(--ink-500); }

/* ---------- Rodapé ---------- */

.site-footer { background: var(--navy-950); color: rgb(255 255 255 / 0.68); font-size: 0.98rem; }
.footer-grid { display: grid; gap: 2.5rem; padding-block: 4rem 3rem; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr; } }
.footer-brand p { max-width: 22rem; margin-top: 1rem; }
.footer-title {
  margin-bottom: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}
.site-footer ul { display: grid; gap: 0.55rem; }
.site-footer a { color: rgb(255 255 255 / 0.8); text-decoration: none; overflow-wrap: anywhere; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer .brand { color: #fff; }
.site-footer .brand:hover { text-decoration: none; }
.site-footer .brand-logo { height: 52px; }
.footer-brand .footer-tagline {
  margin-top: 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 0.55);
}
.social-link {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-top: 1.5rem;
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: 50%;
}
.social-link:hover { background: rgb(255 255 255 / 0.08); }
.social-link svg { width: 20px; height: 20px; }
.footer-bottom { padding-block: 1.4rem; border-top: 1px solid rgb(255 255 255 / 0.08); font-size: 0.9rem; }

/* ---------- Página 404 ---------- */

.error-page {
  display: grid;
  place-items: center;
  min-height: calc(100vh - var(--header-h));
  padding-block: 4rem;
  text-align: center;
}
.error-code { font-size: clamp(4rem, 14vw, 8rem); font-weight: 700; line-height: 1; color: var(--blue-600); }
.error-page h1 { margin-top: 1rem; font-size: clamp(1.75rem, 4vw, 2.5rem); }
.error-page p:not(.error-code) { margin-top: 0.75rem; color: var(--ink-500); }
.error-page .btn { margin-top: 2rem; }

/* ---------- Movimento ---------- */

@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .reveal {
      animation: reveal linear both;
      animation-timeline: view();
      animation-range: entry 0% cover 22%;
    }
  }
}

@keyframes reveal {
  from { opacity: 0; translate: 0 28px; }
  to { opacity: 1; translate: 0 0; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after { transition-duration: 0.01ms !important; }
  .service-card:hover,
  .service-card:hover .service-media img { transform: none; }
}
