@import url("https://fonts.cdnfonts.com/css/placard-next");

/* Open Sauce (self-hosted) */
@font-face {
  font-family: "Open Sauce One";
  src:
    url("fonts/OpenSauceOne-Regular.woff2") format("woff2"),
    url("fonts/OpenSauceOne-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sauce One";
  src:
    url("fonts/OpenSauceOne-SemiBold.woff2") format("woff2"),
    url("fonts/OpenSauceOne-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sauce One";
  src:
    url("fonts/OpenSauceOne-Bold.woff2") format("woff2"),
    url("fonts/OpenSauceOne-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --white: #ffffff;
  --blue: #0e3ea7;
  --blue-dark: #09276f;
  --ink: #111317;
  --soft: #dfe3ea;
  --black: #020202;
}

.titulos {
  font-family: "Placard Next", "Placard MT Std", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  margin: 0;
  font-family: "Open Sauce One", "Open Sauce Sans", "Open Sauce", sans-serif;
  background: var(--bg);
  color: #141414;
}

section,
footer {
  position: relative;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.topbar {
  background: #f9f9fb;
  border-bottom: 1px solid #e7e7ee;
  position: sticky;
  top: 0;
  z-index: 30;
}

.nav {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;

}

.logo-mark {
  width: 26px;
  height: 26px;
  border-radius: 4px;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-family: "Open Sauce One", "Open Sauce Sans", "Open Sauce", sans-serif;
}

.nav nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.nav a {
  color: #101010;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  position: relative;
  display: inline-block;
  transition: color 180ms ease, transform 180ms ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: #1a4ec5;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.nav a:hover {
  color: #1a4ec5;
  transform: translateY(3px);
}

.nav a:hover::after {
  transform: scaleX(1);
}

.nav a.nav-highlight {
  color: #101010;
  font-weight: 700;
}

.nav a.nav-highlight::after {
  transform: scaleX(1);
  background: linear-gradient(90deg, #1a4ec5, #38b6ff);
  height: 3px;
  border-radius: 2px;
  bottom: -6px;
}



.btn-pill {
  background: var(--blue);
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}

.btn-pill.dark {
  color: #fff !important;
  background: #122f80;
}

.hero {
  min-height: clamp(560px, 72vh, 820px);
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
}

.hero::after {
  content: none;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 600ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 40% at 25% 70%, rgba(255, 255, 255, 0.06), transparent 70%),
    repeating-linear-gradient(-8deg, transparent 0 20px, rgba(255, 255, 255, 0.02) 20px 23px);
  animation: overlayDrift 14s ease-in-out infinite;
}

.hero-content {
  min-height: clamp(560px, 72vh, 820px);
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  margin: 0;
  display: block;
  padding-bottom: 0;
  gap: 16px;
}

.hero h1 {
  position: absolute;
  left: 5.2%;
  bottom: 10.5%;
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: -0.5px;
  margin: 0;
  font-weight: 500;
  transform: none;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

@media (min-width: 1001px) {
  
  .hero h1 {
    align-self: flex-end;
  }
}

.billboard {
  width: min(430px, 42vw);
  aspect-ratio: 2.15 / 1;
  background: linear-gradient(145deg, #1a4ec5, #0f2f89);
  border: 4px solid #153474;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.32);
  border-radius: 4px;
  position: relative;
  animation: billboardFloat 8s linear infinite;
}

.billboard::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 160px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -160px;
  background: #1a1a1a;
}

.billboard-inner {
  color: #fff;
  display: grid;
  place-content: center;
  text-align: center;
  height: 100%;
  gap: 8px;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  z-index: 4;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 30px;
  line-height: 1;
  text-align: center;
  color: #fff;
  background: rgba(7, 15, 33, 0.55);
}

.hero-arrow span {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-1px);
}

.hero-arrow.prev {
  left: 16px;
}

.hero-arrow.next {
  right: 16px;
}

.hero-dots {
  position: absolute;
  z-index: 4;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.55);
}

.hero-dot.is-active {
  background: #fff;
  transform: scale(1.2);
}

.billboard strong {
  font-size: clamp(1.4rem, 3.4vw, 2.4rem);
  line-height: 1;
}

.billboard span {
  font-size: 12px;
  opacity: 0.92;
}

.billboard small {
  font-size: 14px;
  font-weight: 700;
}

.about {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(420px, 1.25fr);
  align-items: center;
  column-gap: clamp(22px, 4.5vw, 72px);
  justify-content: center;
  margin-top: 0;
  margin-bottom: 72px;
  height: clamp(430px, 37vw, 640px);
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-top: clamp(32px, 4vw, 56px);
  padding-bottom: clamp(32px, 4vw, 56px);
  padding-left: clamp(18px, 6.2vw, 190px);
  padding-right: clamp(18px, 5.6vw, 120px);
  min-height: 360px;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about > * {
  position: relative;
  z-index: 1;
  transform: translateY(-25px);
}

.about-card {
  width: min(560px, 80%);
  justify-self: start;
  background: transparent;
  box-shadow: none;
  padding: 0;
  transform: translate(100px, -55px);
  position: relative;
  z-index: 4;
}

.about-card h2 {
  color: var(--blue);
  margin: 0 0 10px;
  font-size: clamp(1.815rem, 3.38vw, 4.015rem);
  line-height: 0.95;
  font-weight: 600;
  white-space: nowrap;
}

.about-card p {
  max-width: 540px;
  width: 100%;
  margin: 0;
  color: #111;
  font-size: clamp(0.815rem, 1.28vw, 1.815rem);
  line-height: 1.32;
  font-weight: 500;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
}

.video-card {
  justify-self: end;
  width: min(760px, 100%);
  height: clamp(220px, 24.5vw, 500px);
  margin: 0;
  border-radius: 4px;
  position: relative;
  overflow: visible;
  min-width: 40px !important;
  z-index: 2;
}

.video-card::before {
  content: "";
  position: absolute;
  inset: 16px -22px -22px 22px;
  z-index: -1;
}

.video-card img,
.video-card video {
  min-width: 30%;
  max-width: 100%;
  
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(54px, 4.8vw, 88px);
  height: clamp(54px, 4.8vw, 88px);
  border-radius: 50%;
  background: rgba(9, 34, 110, 0.8);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: clamp(20px, 1.7vw, 32px);
  line-height: 1;
  padding-left: 3px;
}

.city-media {
  width: 100vw;
  max-width: 100vw;
  margin: 150px calc(50% - 50vw) 0;
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  background: #020202;
  color: #fff;
  overflow: hidden;
}

.city-media-image {
  min-height: 0;
  aspect-ratio: 1 / 1;
  background: url("images/5.png") center center / cover no-repeat;
}

.city-media-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 560px;
  padding: 72px clamp(28px, 6vw, 96px);
}

.city-media h2 {
  margin: 0 0 26px;
  color: #fff;
  font-size: 42px;
  line-height: 0.96;
  font-weight: 400;
  letter-spacing: 0;
}

.city-media h2 strong {
  display: inline-block;
  font-weight: 800;
}

.city-media p {
  margin: 0 0 32px;
  max-width: 440px;
  color: #fff;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 400;
}

.city-media-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 30px;
  padding: 8px 18px;
  border-radius: 999px;
  background: #38b6ff;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.city-media-btn:hover {
  background: #1a9fe9;
  box-shadow: 0 10px 24px rgba(56, 182, 255, 0.28);
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .about {
    grid-template-columns: 1fr;
    row-gap: 22px;
    height: auto;
    min-height: 0;
    padding-top: 28px;
    padding-bottom: 34px;
    padding-left: clamp(16px, 4vw, 28px);
    padding-right: clamp(16px, 4vw, 28px);
  }

  .about > * {
    transform: none;
  }

  .about-card {
    justify-self: center;
    width: min(620px, 100%);
    transform: none;
  }

  .about-card h2 {
    white-space: normal;
  }

  .about-card p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .video-card {
    justify-self: center;
    width: min(360px, 100%);
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .video-card::before {
    inset: 12px -12px -12px 12px;
    border-radius: 24px;
  }

  .city-media {
    display:flex !important;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .city-media-image {
  min-height: 920px;
  background: url("images/5.png") center center / cover no-repeat;
}
  .city-media-content {
    max-width: none;
    padding: 42px clamp(22px, 7vw, 56px) 54px;
  }

  .city-media h2 {
    font-size: 34px;
  }

  .city-media p {
    font-size: 19px;
  }

  .services-list {
    grid-template-columns: 1fr;
  }

  .services-item:nth-child(3) {
    order: 1;
  }

  .services-item:nth-child(2) {
    order: 2;
  }

  .services-item:nth-child(1) {
    order: 3;
  }

  .services-item {
    grid-template-rows: auto auto;
  }

  .services-copy {
    padding: 42px clamp(24px, 7vw, 72px) 24px;
  }

  .services-copy h2 {
    font-size: 36px;
  }

  .services-copy h2 img {
    width: 34px;
    height: 34px;
  }

  .services-copy p {
    max-width: 520px;
    font-size: 19px;
  }

  .services-photo {
    min-height: 420px;
  }

  .services-coverage {
    grid-template-columns: 1fr;
    gap: 24px;
    height: 400px !important;
    padding: 48px clamp(24px, 7vw, 72px);
  }

  .services-coverage h2 {
    font-size: 50px;
  }

  .services-coverage p {
    font-size: 22px;
  }
}

.highlight {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: 0;
  aspect-ratio: 1371 / 705;
  background: url("images/master1.png") center center / 100% 100% no-repeat;
  display: grid;
  align-items: center;
}

.highlight .container {
  width: 100%;
  max-width: none;
}

.highlight-grid {
  height: 100%;
  display: block;
  position: relative;
  padding-left: 0;
}

.highlight h2 {
  position: absolute;
  left: 17.2%;
  top: 57%;
  color: #fff;
  font-size: clamp(1.12rem, 3.45vw, 4.2rem);
  line-height: 0.92;
  margin: 0;
  transform: translateY(-50%);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.32);
  max-width: min(41vw, 680px);
}

.services-showcase {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #fffaf0;
  color: #070707;
  overflow: hidden;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.services-item {
  display: grid;
  grid-template-rows: 260px 1fr;
  min-width: 0;
}

.services-copy {
  padding: 64px clamp(24px, 5vw, 94px) 32px;
}

.services-copy h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  color: #000;
  font-size: 38px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}

.services-copy h2 img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex: 0 0 auto;
}

.services-copy p {
  max-width: 330px;
  margin: 0 0 8px;
  color: #000;
  font-size: 19px;
  line-height: 1.08;
  font-weight: 500;
}

.services-copy a {
  color: #11aaff;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.services-copy a:hover {
  color: #007fd0;
  display: inline-block;
  transform: translateY(-2px);
}

.services-photo {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.services-coverage {
  min-height: 355px;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  align-items: center;
  gap: 48px;
  padding: 44px clamp(34px, 10vw, 150px);
  background: #000;
  color: #fff;
}

.services-coverage h2 {
  margin: 0;
  color: #fff;
  font-size: 58px;
  line-height: 0.9;
  font-weight: 300;
  letter-spacing: 0;
}

.services-coverage h2 strong {
  font-weight: 800;
}

.services-coverage p {
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-size: 24px;
  line-height: 1.22;
  font-weight: 800;
}

@media (max-width: 1100px) {
  .services-list {
    grid-template-columns: 1fr;
  }

  .services-item {
    grid-template-rows: auto auto;
  }

  .services-item:nth-child(3) {
    order: 1;
  }

  .services-item:nth-child(2) {
    order: 2;
  }

  .services-item:nth-child(1) {
    order: 3;
  }

  .services-copy {
    padding: 42px clamp(24px, 7vw, 72px) 24px;
  }

  .services-copy h2 {
    font-size: 36px;
  }

  .services-copy h2 img {
    width: 34px;
    height: 34px;
  }

  .services-copy p {
    max-width: 520px;
    font-size: 19px;
  }

  .services-photo {
    min-height: 420px;
  }

  .services-coverage {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 48px clamp(24px, 7vw, 72px);
  }

  .services-coverage h2 {
    font-size: 50px;
  }

  .services-coverage p {
    font-size: 22px;
  }
}

.impact {
  height: calc((100vw * 628 / 1561) + 100px);
  padding: 0;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: clamp(16px, 4vw, 56px);
  padding-right: clamp(16px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;

}

.impact h2 {
  color: var(--blue);
  text-align: center;
  font-size: clamp(2rem, 4.6vw, 3.8rem);
  line-height: 0.92;
  margin: 0 0 22px;
}

.impact-intro {
  margin: 0 auto 56px;
  max-width: 980px;
  text-align: center;
  color: #000;
  font-size: 20px;
  line-height: 1.4;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 360px));
  gap: 5px;
  justify-content: center;
}

.service {
  background: #030303;
  color: #fff;
  border-radius: 12px;
  min-height: 260px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: softLift 9s linear infinite;
}

.service .icon {
  font-size: 22px;
  margin-bottom: 14px;
}

.service h3 {
  margin: 0 0 8px;
  font-size: 32px;
  line-height: 0.85;
}

.service p {
  margin: 0;
  color: #c6c9d2;
}

.dark-showcase {
  background: #050505;
  padding: 0;
  border-radius: 0;
  overflow: hidden;
}

.stack {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.showcase-panel {
  width: 100%;
  margin: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.panel-1 {
  aspect-ratio: 1366 / 683;
  background-image: url("images/suamarca1.png");
  position: relative;
  display: flex;
  align-items: center;
}

.panel-1::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.2) 48%, rgba(0, 0, 0, 0) 70%);
}

.outdoor-overlay {
  position: relative;
  z-index: 1;
  width: min(560px, 46vw);
  margin-left: clamp(28px, 8vw, 128px);
  color: #fff;
  text-align: center;
}

.outdoor-title {
  margin: 0;
  font-size: clamp(3rem, 7.5vw, 7rem);
  line-height: 0.85;
  letter-spacing: 0.5px;
  animation: outdoorTextFloat 8s linear infinite;
  text-shadow: none;
  -webkit-text-stroke: 2px #000;
  paint-order: stroke fill;
}

.outdoor-subtitle {
  margin: 4px 0 18px;
  font-size: clamp(1.6rem, 2.2vw, 3rem);
  line-height: 1;
  font-weight: 500;
  animation: outdoorTextFloat 8s linear infinite;
  animation-delay: 120ms;
  text-shadow: none;
  -webkit-text-stroke: 2px #000;
  paint-order: stroke fill;
}

.outdoor-copy {
  margin: 0 auto;
  max-width: 540px;
  font-size: clamp(1.05rem, 1.25vw, 1.55rem);
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.95);
  animation: outdoorTextFloat 8s linear infinite;
  animation-delay: 220ms;
  text-shadow: none;
  -webkit-text-stroke: 2px #000;
  paint-order: stroke fill;
}

.outdoor-cta-wrap {
  position: relative;
  margin-top: clamp(20px, 2.4vw, 32px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.outdoor-cta-wrap::before,
.outdoor-cta-wrap::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.outdoor-cta {
  display: inline-block;
  min-width: 164px;
  padding: 10px 24px;
  border-radius: 999px;
  background: #fff;
  color: #111;
  text-decoration: none;
  font-size: clamp(1.2rem, 1.45vw, 1.85rem);
  line-height: 1;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.outdoor-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 22px rgba(255, 255, 255, 0.24);
}

.outdoor-cta:active {
  transform: translateY(0) scale(0.98);
}

.panel-2 {
  aspect-ratio: 1366 / 687;
  background-image: url("images/suamarca2.png");
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.panel-2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.2) 48%, rgba(0, 0, 0, 0) 70%);
}

.frontlight-overlay {
  position: relative;
  z-index: 1;
  width: min(560px, 46vw);
  margin-right: clamp(28px, 8vw, 128px);
  color: #fff;
  text-align: center;
}

.frontlight-title {
  margin: 0;
  font-size: clamp(3rem, 7.5vw, 7rem);
  line-height: 0.85;
  letter-spacing: 0.5px;
  animation: outdoorTextFloat 8s linear infinite;
  text-shadow: none;
  -webkit-text-stroke: 2px #000;
  paint-order: stroke fill;
}

.frontlight-subtitle {
  margin: 4px 0 18px;
  font-size: clamp(1.6rem, 2.2vw, 3rem);
  line-height: 1;
  font-weight: 500;
  animation: outdoorTextFloat 8s linear infinite;
  animation-delay: 120ms;
  text-shadow: none;
  -webkit-text-stroke: 2px #000;
  paint-order: stroke fill;
}

.frontlight-copy {
  margin: 0 auto;
  max-width: 540px;
  font-size: clamp(1.05rem, 1.25vw, 1.55rem);
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.95);
  animation: outdoorTextFloat 8s linear infinite;
  animation-delay: 220ms;
  text-shadow: none;
  -webkit-text-stroke: 2px #000;
  paint-order: stroke fill;
}

.frontlight-cta-wrap {
  position: relative;
  margin-top: clamp(20px, 2.4vw, 32px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.frontlight-cta-wrap::before,
.frontlight-cta-wrap::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.frontlight-cta {
  display: inline-block;
  min-width: 164px;
  padding: 10px 24px;
  border-radius: 999px;
  background: #fff;
  color: #111;
  text-decoration: none;
  font-size: clamp(1.2rem, 1.45vw, 1.85rem);
  line-height: 1;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.frontlight-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 22px rgba(255, 255, 255, 0.24);
}

.frontlight-cta:active {
  transform: translateY(0) scale(0.98);
}

.panel-3 {
  aspect-ratio: 1366 / 678;
  background-image: url("images/suamarca3.png");
  position: relative;
  display: flex;
  align-items: center;
}

.panel-3::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.36) 42%, rgba(0, 0, 0, 0.06) 70%);
}

.metro-overlay-panel {
  position: relative;
  z-index: 1;
  width: min(560px, 46vw);
  margin-left: clamp(28px, 8vw, 128px);
  color: #fff;
  text-align: center;
}

.metro-title {
  margin: 0;
  font-size: clamp(3rem, 7.5vw, 7rem);
  line-height: 0.85;
  letter-spacing: 0.5px;
  animation: outdoorTextFloat 8s linear infinite;
  text-shadow: none;
  -webkit-text-stroke: 2px #000;
  paint-order: stroke fill;
}

.metro-subtitle {
  margin: 4px 0 18px;
  font-size: clamp(1.6rem, 2.2vw, 3rem);
  line-height: 1;
  font-weight: 500;
  animation: outdoorTextFloat 8s linear infinite;
  animation-delay: 120ms;
  text-shadow: none;
  -webkit-text-stroke: 2px #000;
  paint-order: stroke fill;
}

.metro-copy {
  margin: 0 auto;
  max-width: 540px;
  font-size: clamp(1.05rem, 1.25vw, 1.55rem);
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.95);
  animation: outdoorTextFloat 8s linear infinite;
  animation-delay: 220ms;
  text-shadow: none;
  -webkit-text-stroke: 2px #000;
  paint-order: stroke fill;
}

.metro-cta-wrap {
  position: relative;
  margin-top: clamp(20px, 2.4vw, 32px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.metro-cta-wrap::before,
.metro-cta-wrap::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.galeria {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 20px;
}

.card {
  position: relative;
  overflow: hidden;
  border: 3px solid #040404; /* azul sólido */
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #070707; /* garante borda uniforme */
}

.card img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.03); /* levemente maior já no normal */
  transition: transform 0.3s ease;
}

/* Hover efeito */
.card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.card:hover img {
  transform: scale(1.1); /* aumenta mais no hover */
}

/* Tooltip */
.tooltip {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(0,0,0,0.8);
  padding: 10px;
  border-radius: 10px;
  display: flex;
  gap: 10px;
  opacity: 0;
  transition: all 0.3s ease;
}

.card:hover .tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Botões */
.tooltip a {
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  color: #fff;
}

.btn-whatsapp {
  background: #25D366;
}

.btn-maps {
  background: #4285F4;
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding: 20px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.modal.active {
  display: flex;
}

/* Responsivo */
@media (max-width: 900px) {
  .galeria {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .galeria {
    grid-template-columns: 1fr;
  }
}
.metro-cta {
  display: inline-block;
  min-width: 164px;
  padding: 10px 24px;
  border-radius: 999px;
  background: #fff;
  color: #111;
  text-decoration: none;
  font-size: clamp(1.2rem, 1.45vw, 1.85rem);
  line-height: 1;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.metro-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 22px rgba(255, 255, 255, 0.24);
}

.metro-cta:active {
  transform: translateY(0) scale(0.98);
}

.show-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  color: #fff;
}

.show-item h3 {
  margin: 0 0 8px;
  font-size: clamp(2.4rem, 6vw, 6rem);
  line-height: 0.8;
}

.show-item p {
  margin: 0 0 16px;
  color: #b5b8c0;
}

.shape {
  min-height: 210px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-size: 40px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: softLift 10s linear infinite;
}

.blue .shape {
  background: linear-gradient(140deg, #173eaa, #3766e8);
}

.pink .shape {
  background: linear-gradient(140deg, #cd3ba2, #ff77ca);
}

.btn-light {
  color: #111;
  text-decoration: none;
  background: #fff;
  font-size: 13px;
  font-weight: 900;
  border-radius: 999px;
  padding: 8px 16px;
}

.metro {
  min-height: 460px;
  border-bottom-left-radius: 34px;
  border-bottom-right-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.1) 100%),
    linear-gradient(120deg, #1b1f2a 0%, #36455d 38%, #7fa3c0 58%, #6e7f91 100%);
  display: grid;
  align-items: end;
}

.metro-inner {
  padding-bottom: 40px;
}

.metro h3 {
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  margin: 0;
  line-height: 0.85;
}

.metro p {
  color: #fff;
  font-size: 28px;
  margin: 6px 0 20px;
}

.gallery {
  width: 100vw;
  max-width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 56px 0 36px;
}

.gallery-feature {
  padding: 0;
  background: #fff;
}

.gallery-feature-top {
  display: none;
}

.gallery-feature-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(420px, 1.02fr);
  min-height: 430px;
}

.gallery-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 68px clamp(28px, 6vw, 80px);
  background: #fff;
  color: #000;
}

.gallery-feature-copy h2 {
  margin: 0;
  color: #000;
  font-size: 62px;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0;
}

.gallery-feature-copy h2 strong {
  font-weight: 800;
}

.gallery-feature-subtitle {
  margin: 2px 0 30px !important;
  color: #000;
  font-size: 28px !important;
  line-height: 1.1 !important;
  font-weight: 500 !important;
}

.gallery-feature-copy p:not(.gallery-feature-subtitle) {
  max-width: 580px;
  margin: 0 0 36px;
  color: #000;
  font-size: 26px;
  line-height: 1.28;
  font-weight: 600;
}

.gallery-feature-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 34px;
  padding: 10px 24px;
  border-radius: 999px;
  background: #38b6ff;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.gallery-feature-btn:hover {
  background: #159ee8;
  box-shadow: 0 10px 24px rgba(56, 182, 255, 0.24);
  transform: translateY(-2px);
}

.gallery-feature-image {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .gallery-feature-top {
    height: 220px;
  }

  .gallery-feature-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .gallery-feature-copy {
    order: 2;
    padding: 42px 28px 48px;
  }

  .gallery-feature-copy h2 {
    font-size: 44px;
  }

  .gallery-feature-subtitle {
    font-size: 22px !important;
  }

  .gallery-feature-copy p:not(.gallery-feature-subtitle) {
    font-size: 20px;
  }

  .gallery-feature-image {
    order: 1;
    min-height: 360px;
  }
}

.gallery-shell {
  width: min(1220px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 330px) 1fr;
  gap: 28px;
  align-items: center;
}

.gallery-left h3 {
  margin: 0 0 20px;
  color: #121212;
  font-size: clamp(2rem, 3.4vw, 4.1rem);
  line-height: 0.92;
  font-weight: 600;
}

.gallery-arrows {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.gallery-arrow {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #666a73;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-right {
  position: relative;
  height: 308px;
  overflow: hidden;
}

.gallery-card-item {
  position: absolute;
  top: 0;
  border-radius: 24px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  transition:
    left 620ms cubic-bezier(0.2, 0.85, 0.22, 1),
    width 620ms cubic-bezier(0.2, 0.85, 0.22, 1),
    min-height 620ms cubic-bezier(0.2, 0.85, 0.22, 1),
    opacity 380ms ease,
    transform 620ms cubic-bezier(0.2, 0.85, 0.22, 1),
    background-color 420ms ease;
}

.gallery-card-item img {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  transition: height 620ms cubic-bezier(0.2, 0.85, 0.22, 1);
}

.gallery-card-item p {
  margin: 10px 2px 0;
  color: #fff;
  font-weight: 700;
  line-height: 1.06;
  transition: font-size 620ms cubic-bezier(0.2, 0.85, 0.22, 1), opacity 380ms ease;
}

.gallery-card-item.pos-main {
  left: 0;
  width: 37%;
  min-height: 280px;
  z-index: 3;
}

.gallery-card-item.pos-main img {
  height: 138px;
}

.gallery-card-item.pos-main p {
  font-size: clamp(1.02rem, 1.34vw, 1.5rem);
}

.gallery-card-item.pos-mid {
  left: 40%;
  width: 32%;
  min-height: 252px;
  z-index: 2;
}

.gallery-card-item.pos-mid img {
  height: 132px;
}

.gallery-card-item.pos-mid p {
  font-size: clamp(0.93rem, 1.16vw, 1.3rem);
}

.gallery-card-item.pos-small {
  left: 75%;
  width: 24%;
  min-height: 230px;
  z-index: 1;
}

.gallery-card-item.pos-small img {
  height: 118px;
}

.gallery-card-item.pos-small p {
  font-size: clamp(0.82rem, 0.98vw, 1.05rem);
}

.gallery-card-item.pos-off-right {
  left: 103%;
  width: 24%;
  min-height: 230px;
  opacity: 0.15;
  z-index: 0;
}

.gallery-card-item.pos-off-right img {
  height: 118px;
}

.gallery-card-item.pos-off-right p {
  font-size: clamp(0.82rem, 0.98vw, 1.05rem);
}

.gallery-card-item.pos-off-left {
  left: -28%;
  width: 37%;
  min-height: 280px;
  opacity: 0.18;
  z-index: 0;
}

.gallery-card-item.pos-off-left img {
  height: 138px;
}

.gallery-card-item.pos-off-left p {
  font-size: clamp(1.02rem, 1.34vw, 1.5rem);
}

.card-dark {
  background: #000;
}

.card-blue {
  background: #6f86ca;
}

.card-indigo {
  background: #4f6abb;
}

.card-steel {
  background: #5f6f91;
}

.card-fade {
  background: #c8d2e6;
}

.card-fade p {
  color: #ffffff;
  opacity: 0.72;
}

.gallery-indicators {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}

.gallery-indicator {
  width: 18px;
  height: 4px;
  border-radius: 10px;
  display: block;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: #b9b9b9;
  opacity: 0.9;
  transition:
    width 420ms cubic-bezier(0.2, 0.85, 0.22, 1),
    height 420ms cubic-bezier(0.2, 0.85, 0.22, 1),
    background-color 320ms ease,
    opacity 320ms ease,
    transform 420ms cubic-bezier(0.2, 0.85, 0.22, 1);
}

#galleryIndicators.shift-next .gallery-indicator {
  animation: indicatorShiftNext 500ms cubic-bezier(0.2, 0.85, 0.22, 1) both;
}

#galleryIndicators.shift-prev .gallery-indicator {
  animation: indicatorShiftPrev 500ms cubic-bezier(0.2, 0.85, 0.22, 1) both;
}

#galleryIndicators .gallery-indicator:nth-child(1) { animation-delay: 0ms; }
#galleryIndicators .gallery-indicator:nth-child(2) { animation-delay: 28ms; }
#galleryIndicators .gallery-indicator:nth-child(3) { animation-delay: 56ms; }
#galleryIndicators .gallery-indicator:nth-child(4) { animation-delay: 84ms; }
#galleryIndicators .gallery-indicator:nth-child(5) { animation-delay: 112ms; }

.gallery-indicator.theme-dark {
  --dot-color: #111111;
}

.gallery-indicator.theme-blue {
  --dot-color: #6f86ca;
}

.gallery-indicator.theme-fade {
  --dot-color: #9eacca;
}

.gallery-indicator.theme-indigo {
  --dot-color: #4f6abb;
}

.gallery-indicator.dot-main {
  width: 92px;
  height: 6px;
  background: var(--dot-color, #1a4ec5);
  opacity: 1;
}

.gallery-indicator.dot-mid {
  width: 74px;
  height: 5px;
  background: var(--dot-color, #1a4ec5);
  opacity: 0.96;
}

.gallery-indicator.dot-small {
  width: 56px;
  height: 5px;
  background: var(--dot-color, #1a4ec5);
  opacity: 0.9;
}

.gallery-indicator.dot-off {
  width: 18px;
  height: 4px;
  background: #b9b9b9;
  opacity: 0.75;
}

@keyframes indicatorShiftNext {
  0% {
    transform: translateX(10px) scale(0.95);
  }

  55% {
    transform: translateX(-2px) scale(1.02);
  }

  100% {
    transform: translateX(0) scale(1);
  }
}

@keyframes indicatorShiftPrev {
  0% {
    transform: translateX(-10px) scale(0.95);
  }

  55% {
    transform: translateX(2px) scale(1.02);
  }

  100% {
    transform: translateX(0) scale(1);
  }
}

.map {
  width: 100vw;
  max-width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 0;
}

.contact-map {
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(420px, 1.02fr);
  background: #fff;
}

.contact-map-left {
  display: grid;
  grid-template-rows: minmax(200px, 0.88fr) minmax(230px, 1fr);
  min-height: 430px;
  background: #151515;
}

.contact-map-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 54px clamp(28px, 5vw, 72px);
  color: #fff;
}

.contact-map-copy h2 {
  margin: 0 0 28px;
  color: #fff;
  font-size: 38px;
  line-height: 1.02;
  font-weight: 300;
  letter-spacing: 0;
}

.contact-map-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 34px;
  padding: 9px 22px;
  border-radius: 999px;
  background: #38b6ff;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.contact-map-copy a:hover {
  background: #159ee8;
  box-shadow: 0 10px 24px rgba(56, 182, 255, 0.24);
  transform: translateY(-2px);
}

.contact-map-frame {
  min-height: 230px;
  background: #ddd;
  overflow: hidden;
}

.map-frame {
  width: 100% !important;
  height: 100% !important;
  display: block;
  border: 0;
  margin: 0 !important;
}

.contact-map-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px clamp(36px, 8vw, 138px);
  color: #000;
}

.contact-map-form label {
  margin: 0 0 10px;
  color: #000;
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
}

.contact-map-form input,
.contact-map-form textarea {
  width: 100%;
  margin: 0 0 34px;
  border: 1px solid #777;
  border-radius: 3px;
  background: #fff;
  color: #000;
  font: inherit;
  font-size: 17px;
  padding: 10px 12px;
}

.contact-map-form input {
  height: 42px;
}

.contact-map-form textarea {
  min-height: 88px;
  resize: vertical;
}

.contact-map-form button {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 10px;
  background: #e0e0e0;
  color: #000;
  font-size: 22px;
  font-weight: 400;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.contact-map-form button:hover {
  background: #d1d1d1;
  transform: translateY(-2px);
}

.contact-map-form small {
  margin-top: 12px;
  color: #111;
  text-align: center;
  font-size: 12px;
}

.map-box {
  height: 320px;
  border-radius: 14px;
  border: 1px solid #d2d7df;
  background:
    repeating-linear-gradient(0deg, #dce9f3 0 32px, #d4e0ea 32px 33px),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(130, 140, 160, 0.16) 38px 39px),
    linear-gradient(120deg, #c5e5ca 0 30%, #a2d6d6 30% 55%, #ced6ef 55% 100%);
  position: relative;
  overflow: hidden;
}

.pin {
  position: absolute;
  transform: translate(-50%, -50%);
  padding: 6px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  animation: pinPulse 6s linear infinite;
}

.pin.red {
  background: #df2243;
}

.pin.blue {
  background: #1f57d6;
}

.billboard:hover,
.card:hover,
.service:hover,
.shape:hover,
.thumb:hover,
.pin:hover {
  animation-play-state: paused;
}

.footer {
  background: #000;
  color: #fff;
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

.foot {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
}

.footer-logo {
  height: 24px;
  width: auto;
  display: block;
}

.social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-decoration: none;
  transition: transform 200ms ease, filter 200ms ease, background-color 200ms ease;
}

.social a:hover {
  transform: translateY(-3px) scale(1.08);
  filter: brightness(1.15);
  background-color: rgba(255, 255, 255, 0.12);
}

.social img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

.reveal-target {
  opacity: 0;
  transform: translateY(36px) scale(0.985);
  filter: blur(2px);
  transition:
    opacity 700ms ease,
    transform 700ms ease,
    filter 700ms ease;
}

.reveal-target.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.interactive-btn {
  overflow: hidden;
  isolation: isolate;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.interactive-btn:not(.hero-arrow) {
  position: relative;
}

.interactive-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.interactive-btn:active,
.interactive-btn.is-pressing {
  transform: scale(0.97);
}

.button-ripple {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.45);
  transform: translate(-50%, -50%) scale(0);
  animation: ripple 620ms ease-out forwards;
  z-index: 2;
}

@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.85;
  }

  100% {
    transform: translate(-50%, -50%) scale(16);
    opacity: 0;
  }
}

@keyframes overlayDrift {
  0%,
  35%,
  100% {
    transform: translateX(0) translateY(0);
  }

  50% {
    transform: translateX(-1.2%) translateY(0.8%);
  }
}

@keyframes billboardFloat {
  0%,
  40%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-13px);
  }

  58% {
    transform: translateY(-13px);
  }

  66% {
    transform: translateY(0);
  }
}

@keyframes softLift {
  0%,
  42%,
  100% {
    transform: translateY(0);
  }

  51% {
    transform: translateY(-7px);
  }

  58% {
    transform: translateY(-7px);
  }

  66% {
    transform: translateY(0);
  }
}

@keyframes glowPulse {
  0%,
  44%,
  100% {
    box-shadow: 0 0 0 rgba(255, 255, 255, 0.18);
  }

  53% {
    box-shadow: 0 0 28px rgba(255, 255, 255, 0.24);
  }

  60% {
    box-shadow: 0 0 28px rgba(255, 255, 255, 0.24);
  }

  68% {
    box-shadow: 0 0 0 rgba(255, 255, 255, 0.18);
  }
}

@keyframes pinPulse {
  0%,
  45%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  53% {
    transform: translate(-50%, -50%) scale(1.1);
  }

  60% {
    transform: translate(-50%, -50%) scale(1.1);
  }

  68% {
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes outdoorTextFloat {
  0%,
  42%,
  100% {
    transform: translateY(0);
  }

  52% {
    transform: translateY(-6px);
  }

  60% {
    transform: translateY(-6px);
  }

  68% {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
@media (max-width: 1500px) {
  .video-card {
    margin-bottom: 90px;
  }
  .city-media-image {
    margin-top: 0 !important;
  }
}
@media (max-width: 950px) {
  .video-card {
    margin-bottom: 90px;
  }
  #about {
    align-items: center !important;
    text-align: center !important;
    justify-content: center;
  }
  .about-card {
  width: min(1500px, 100%);
  justify-self: center;
  background: transparent;
  box-shadow: none;
  padding: 0;
  position: relative;
  z-index: 4;
}
}
@media (max-width: 1000px) {
  .hero-content {
    flex-direction: column;
    padding-bottom: 0;
  }

  .billboard {
    width: min(500px, 100%);
  }

  .hero-arrow {
    width: 36px;
    height: 36px;
    font-size: 24px;
  }

  .highlight-grid,
  .cards,
  .show-item,
  .gallery-track {
    grid-template-columns: 1fr;
  }

  .gallery-shell {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .gallery-right {
    height: 282px;
  }

  .show-item,
  .service,
  .gallery-head {
    text-align: center;
  }

  .gallery-head {
    align-items: center;
    justify-content: center;
  }

  .service h3 {
    font-size: 28px;
  }

  .impact-intro {
    font-size: 17px;
    margin-bottom: 34px;
  }

  .impact {
    height: auto;
    min-height: 700px;
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .outdoor-overlay {
    width: min(680px, 86vw);
    margin-left: auto;
    margin-right: auto;
  }

  .frontlight-overlay {
    width: min(680px, 86vw);
    margin-left: auto;
    margin-right: auto;
  }

  .metro-overlay-panel {
    width: min(680px, 86vw);
    margin-left: auto;
    margin-right: auto;
  }

  .outdoor-copy,
  .frontlight-copy,
  .metro-copy {
    max-width: 88%;
  }
  
}

@media (max-width: 720px) {
  .nav nav {
    display: none;
  }

  .hero {
    min-height: 440px;
  }

  .hero-content {
    min-height: 440px;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .hero-arrow {
    display: none;
  }

  .card {
    min-height: 200px;
    padding: 5px !important;
  }

  .gallery-right {
    height: 260px;
  }

  .gallery-card-item.pos-main {
    width: 56%;
    left: 0;
  }

  .gallery-card-item.pos-mid {
    width: 40%;
    left: 58%;
  }

  .gallery-card-item.pos-small {
    left: 102%;
    width: 32%;
    opacity: 0;
  }

  .gallery-card-item.pos-off-right,
  .gallery-card-item.pos-off-left {
    opacity: 0;
  }

  .map-box {
    height: 240px;
  }

  .impact {
    min-height: auto;
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .outdoor-title {
    font-size: clamp(2.2rem, 10vw, 4.2rem);
  }

  .outdoor-subtitle {
    font-size: clamp(1.1rem, 5vw, 1.8rem);
  }

  .outdoor-copy {
    font-size: clamp(0.95rem, 3.8vw, 1.15rem);
  }

  .outdoor-cta {
    min-width: 138px;
    font-size: 1rem;
    padding: 8px 18px;
  }

  .frontlight-title {
    font-size: clamp(2.2rem, 10vw, 4.2rem);
  }

  .frontlight-subtitle {
    font-size: clamp(1.1rem, 5vw, 1.8rem);
  }

  .frontlight-copy {
    font-size: clamp(0.95rem, 3.8vw, 1.15rem);
  }

  .frontlight-cta {
    min-width: 138px;
    font-size: 1rem;
    padding: 8px 18px;
  }

  .metro-title {
    font-size: clamp(2.2rem, 10vw, 4.2rem);
  }

  .metro-subtitle {
    font-size: clamp(1.1rem, 5vw, 1.8rem);
  }

  .metro-copy {
    font-size: clamp(0.95rem, 3.8vw, 1.15rem);
  }

  .metro-cta {
    min-width: 138px;
    font-size: 1rem;
    padding: 8px 18px;
  }

  .outdoor-overlay,
  .frontlight-overlay,
  .metro-overlay-panel {
    width: 92%;
  }

  .outdoor-subtitle,
  .frontlight-subtitle,
  .metro-subtitle {
    margin: 2px 0 10px;
  }

  .outdoor-copy,
  .frontlight-copy,
  .metro-copy {
    max-width: 92%;
    line-height: 1.22;
  }
}

@media (max-width: 560px) {
  .services-copy {
    padding: 34px 22px 22px;
  }

  .services-copy h2 {
    font-size: 32px;
  }

  .services-copy h2 img {
    width: 30px;
    height: 30px;
  }

  .services-copy p {
    font-size: 17px;
  }

  .services-photo {
    min-height: 320px;
  }

  .services-coverage h2 {
    font-size: 42px;
  }

  .services-coverage p {
    font-size: 19px;
  }

  .outdoor-title,
  .frontlight-title,
  .metro-title {
    font-size: clamp(1.8rem, 8.6vw, 2.6rem);
    line-height: 0.9;
  }

  .outdoor-subtitle,
  .frontlight-subtitle,
  .metro-subtitle {
    font-size: clamp(0.9rem, 5vw, 1.35rem);
    line-height: 1;
  }

  .outdoor-copy,
  .frontlight-copy,
  .metro-copy {
    font-size: clamp(0.78rem, 3.5vw, 1rem);
    line-height: 1.18;
  }

  .outdoor-cta,
  .frontlight-cta,
  .metro-cta {
    min-width: 118px;
    font-size: 0.84rem;
    padding: 7px 14px;
  }
}

@media (max-width: 460px) {
  .outdoor-title,
  .frontlight-title,
  .metro-title {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }

  .outdoor-subtitle,
  .frontlight-subtitle,
  .metro-subtitle {
    font-size: clamp(0.84rem, 4.5vw, 1.1rem);
  }

  .outdoor-copy,
  .frontlight-copy,
  .metro-copy {
    font-size: clamp(0.72rem, 3.2vw, 0.9rem);
    line-height: 1.12;
    max-width: 95%;
  }

  .outdoor-cta-wrap,
  .frontlight-cta-wrap,
  .metro-cta-wrap {
    margin-top: 12px;
  }
}

@media (max-width: 1500px) {
  .city-media {
    margin-top: 150px !important;
    min-height: 0 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr) !important;
    background: #020202 !important;
    overflow: hidden !important;
  }

  .city-media-image {
    width: 100% !important;
    min-height: 0 !important;
    aspect-ratio: 1 / 1 !important;
    margin: 0 !important;
    background-image: url("images/5.png") !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
  }

  .city-media-content {
    width: 100% !important;
    max-width: 560px !important;
    align-items: flex-start !important;
    text-align: left !important;
    padding: 72px clamp(28px, 6vw, 96px) !important;
  }

  .city-media h2,
  .city-media p {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

@media (max-width: 950px) {
  .city-media {
    display: flex !important;
    flex-direction: column !important;
  }

  section:not(.hero):not(#hero):not(.hero-section) {
    text-align: center;
  }

  section:not(.hero):not(#hero):not(.hero-section) :is(h2, h3, h4, p) {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-map {
    grid-template-columns: 1fr !important;
  }

  .contact-map-left {
    order: 1;
    width: 100%;
  }

  .contact-map-form {
    order: 2;
    width: 100%;
    padding: 42px clamp(24px, 7vw, 72px) 48px;
  }

  .contact-map-frame,
  .map-frame {
    width: 100% !important;
  }

  .city-media-image {
    width: 100% !important;
    min-height: 0 !important;
    aspect-ratio: 1 / 1 !important;
    background-position: center center !important;
  }

  .city-media-content {
    max-width: none !important;
    align-items: center !important;
    text-align: center !important;
    padding: 42px 24px 52px !important;
  }

  .city-media h2 {
    text-align: center !important;
    margin: 0 auto 26px !important;
    max-width: 620px !important;
  }

  .city-media p {
    text-align: center !important;
    margin: 0 auto 32px !important;
    max-width: 560px !important;
  }

  .outdoor-title,
  .frontlight-title,
  .frontligth-title,
  .metro-title,
  .outdoor h2,
  .frontlight h2,
  .frontligth h2,
  .metro h2,
  [class*="outdoor"] h2,
  [class*="frontlight"] h2,
  [class*="frontligth"] h2,
  [class*="metro"] h2 {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  iframe,
  .map-frame,
  .map,
  .mapa,
  [class*="map"],
  [class*="Map"],
  [class*="mapa"],
  [class*="Mapa"] {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 950px) {
  body section:not(.hero):not(#hero):not(.hero-section),
  body section:not(.hero):not(#hero):not(.hero-section) > *,
  body section:not(.hero):not(#hero):not(.hero-section) :is(.container, .content, .wrapper, .copy, [class*="copy"], [class*="content"]) {
    text-align: center !important;
  }

  body section:not(.hero):not(#hero):not(.hero-section) :is(h1, h2, h3, h4, p, a, button, label, small) {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body section:not(.hero):not(#hero):not(.hero-section) :is(a, button, .btn-pill, [class*="btn"], [class*="cta"]) {
    align-self: center !important;
    justify-self: center !important;
  }

  .hero,
  .hero-slides,
  .hero-slide,
  .hero-slide img {
    border-radius: 0 !important;
  }

  .hero {
  
    min-height: min(760px, calc(100svh - 58px)) !important;
    
    background: #000;
  }

  .hero-content {
    min-height: min(760px, calc(100svh - 58px)) !important;
    padding: 0 !important;
  }

  .hero h1 {
        font-size: clamp(3rem, 4.5vw, 3.4rem);

    left: 7vw !important;
    right: 7vw !important;
    bottom: 9vh !important;
    max-width: 88vw !important;
    color: #fff !important;
    line-height: 1.02 !important;
    text-align: left !important;
    margin: 0 !important;
  }

  .hero-slide img {
    object-fit: cover !important;
    object-position: center center !important;
  }

  .gallery-feature-copy {
    align-items: center !important;
  }

  .gallery-feature-btn,
  .city-media-btn,
  .services-copy a,
  .contact-map-copy a,
  .contact-map-form button,
  .outdoor-cta,
  .frontlight-cta,
  .metro-cta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .services-list {
    display: flex !important;
    flex-direction: column !important;
  }

  .services-item {
    display: flex !important;
    flex-direction: column !important;
    min-height: 0 !important;
    background: #fffaf0 !important;
  }

  .services-copy {
    order: 1 !important;
    width: 100% !important;
    padding: 34px 22px 24px !important;
    background: #fffaf0 !important;
    position: relative !important;
    z-index: 2 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .services-copy h2 {
    justify-content: center !important;
    width: 100% !important;
  }

  .services-copy p {
    max-width: min(520px, 92vw) !important;
  }

  .services-photo {
    order: 2 !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 4 / 3 !important;
    object-fit: cover !important;
    display: block !important;
    margin: 0 !important;
    position: static !important;
  }

  .services-coverage {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .foot {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    text-align: center;
    padding: 20px 15px;
  }

  .footer-logo-wrap {
    order: 1;
  }

  .foot small {
    order: 2;
    max-width: 600px;
    line-height: 1.6;
    font-size: 14px;
    padding: 0 10px;
  }

  .social {
    order: 3;
    display: flex;
    justify-content: center;
    gap: 18px;
  }

  .social a img {
    width: 24px;
    height: 24px;
  }

  .footer-logo {
    max-height: 40px;
    width: auto;
  }

}


@media (max-width: 560px) {
  .hero {
    min-height: min(700px, calc(100svh - 58px)) !important;
  }

  .hero-content {
    min-height: min(700px, calc(100svh - 58px)) !important;
  }

  .hero h1 {
    bottom: 7vh !important;
  }
}



.mobile-title {
    display: none;
}

@media (max-width: 768px) {
    .desktop-title {
        display: none;
    }

    .mobile-title {
        display: inline;
    }
}