:root {
  --black: #070707;
  --ink: #111;
  --graphite: #252525;
  --gray: #707070;
  --line: #d8d8d8;
  --paper: #f3f3f1;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

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

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

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 120px 0;
}

.eyebrow {
  margin: 0 0 22px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .25em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(44px, 4vw, 82px);
  line-height: .98;
  letter-spacing: -.055em;
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(36px, 4.3vw, 62px);
  line-height: 1.02;
  letter-spacing: -.05em;
}

p {
  line-height: 1.65;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid currentColor;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .3s, color .3s, border-color .3s, transform .3s;
}

.button-light {
  background: white;
  color: #050505;
  border-color: white;
}

.button-outline {
  color: white;
  background: transparent;
  border-color: rgba(255, 255, 255, .6);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1280px, calc(100% - 64px));
  height: 70px;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 36px;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.brand img {
  width: 105px;
  max-height: 60px;
  object-fit: contain;
  filter: invert(1);
}

.nav {
  display: flex;
  justify-content: center;
  gap: 34px;
}

.nav a {
  position: relative;
  font-size: 12px;
  font-weight: 700;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 1px;
  background: white;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s;
}

.header-cta {
  min-height: 44px;
  padding-inline: 20px;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 12px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 1px;
  margin: 6px;
  background: white;
}

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  background: #080808;
  height: 85vh;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: url('assets/hero-equipe.png') 43% 19%/cover no-repeat;
  filter: grayscale(1) contrast(1.06);
  transform: scale(1.015);
  animation: heroScale 1.6s cubic-bezier(.2, .7, .2, 1) both;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .98) 0%, rgba(0, 0, 0, .88) 36%, rgba(0, 0, 0, .32) 68%, rgba(0, 0, 0, .18) 100%), linear-gradient(0deg, rgba(0, 0, 0, .55), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  /* padding-top: 115px; */
}

.hero-kicker,
.hero-content h1,
.hero-copy,
.hero-content .button-row {
  opacity: 0;
  transform: translateY(22px);
  animation: heroIn .75s ease forwards;
}

.hero-content h1 {
  animation-delay: .12s;
}

.hero-copy {
  max-width: 590px;
  margin-bottom: 34px;
  font-size: 17px;
  color: #d4d4d4;
  animation-delay: .22s;
}

.hero-content .button-row {
  animation-delay: .32s;
}

.hero-rail {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  right: 0;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 20px 40px;
  border-top: 1px solid rgba(255, 255, 255, .2);
  background: rgba(0, 0, 0, .4);
  backdrop-filter: blur(8px);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.hero-rail i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: white;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #0a0a0a;
  color: white;
  border-top: 1px solid #333;
}

.trust-strip div {
  min-height: 105px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 36px;
  border-right: 1px solid #333;
  font-size: 12px;
  font-weight: 700;
}

.trust-strip span {
  color: #777;
  font-size: 10px;
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 90px;
}

.section-copy p:not(.eyebrow) {
  max-width: 560px;
  color: #5e5e5e;
  font-size: 16px;
}

.text-link {
  display: inline-flex;
  gap: 18px;
  margin-top: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid #111;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.image-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #111;
}

.about-image {
  height: 680px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter .5s, transform .8s cubic-bezier(.2, .7, .2, 1);
}

.about-image figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 28px;
  color: white;
  background: linear-gradient(transparent, rgba(0, 0, 0, .9));
}

.about-image figcaption strong {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
}

.about-image figcaption span {
  font-size: 13px;
  color: #ccc;
}

.services {
  background: #090909;
  color: white;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.45fr .55fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 60px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading>p {
  margin-bottom: 5px;
  color: #aaa;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.service-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border: 1px solid #333;
  background: #111;
}

.service-card.featured {
  grid-column: span 2;
  min-height: 500px;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(.55);
  transition: transform .75s cubic-bezier(.2, .7, .2, 1), filter .5s;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .95), transparent 70%);
}

.service-number {
  position: absolute;
  top: 22px;
  left: 24px;
  font-size: 62px;
  line-height: 1;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .35);
  transition: color .35s, transform .35s;
}

.service-content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 25px;
}

.service-content h3 {
  max-width: 310px;
  margin-bottom: 10px;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: -.02em;
}

.service-content p {
  max-width: 400px;
  margin-bottom: 0;
  color: #bbb;
  font-size: 13px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .35s, transform .35s;
}

.card-arrow {
  position: absolute;
  right: 0;
  bottom: 2px;
  font-size: 24px;
  transition: transform .35s;
}

.service-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid #333;
}

.service-cta p {
  margin: 0;
  font-size: 20px;
}

.compliance {
  background: var(--paper);
}

.compliance-grid {
  display: grid;
  grid-template-columns: 1.1fr .8fr .65fr;
  align-items: center;
  gap: 70px;
}

.compliance-grid>div:first-child>p:last-child {
  color: #666;
}

.compliance-list {
  border-top: 1px solid #aaa;
}

.compliance-list>div {
  position: relative;
  padding: 26px 0 26px 44px;
  border-bottom: 1px solid #aaa;
}

.compliance-list span {
  position: absolute;
  left: 0;
  top: 30px;
  font-size: 10px;
  color: #777;
}

.compliance-list h3 {
  margin-bottom: 8px;
  font-size: 17px;
}

.compliance-list p {
  margin: 0;
  color: #777;
  font-size: 13px;
}

.legal-stamp {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px;
  border: 4px double #222;
  transform: rotate(-3deg);
  text-align: center;
  text-transform: uppercase;
}

.legal-stamp span {
  font-size: 19px;
  letter-spacing: .12em;
}

.legal-stamp strong {
  font-size: 27px;
  line-height: 1.1;
}

.legal-stamp small {
  margin-top: 13px;
  font-size: 9px;
  letter-spacing: .18em;
}

.process {
  background: #101010;
  color: white;
}

.compact {
  display: block;
  max-width: 720px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #353535;
}

.process-grid article {
  min-height: 270px;
  padding: 30px;
  border-right: 1px solid #353535;
  transition: background .3s, transform .3s;
}

.process-grid article:last-child {
  border-right: 0;
}

.process-grid span {
  display: block;
  margin-bottom: 70px;
  color: #777;
  font-size: 42px;
  font-weight: 800;
}

.process-grid h3 {
  margin-bottom: 12px;
  text-transform: uppercase;
  font-size: 16px;
}

.process-grid p {
  margin: 0;
  color: #999;
  font-size: 13px;
}

.clients h2 {
  max-width: 780px;
}

.clients .intro {
  max-width: 650px;
  color: #666;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 50px;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
}

.logo-grid figure {
  min-height: 190px;
  margin: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  place-items: center;
  padding: 24px;
  overflow: hidden;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  background: #fafafa;
  transition: background .35s, transform .35s;
}

.logo-grid img {
  width: 100%;
  height: 110px;
  object-fit: contain;
  filter: grayscale(1);
  transition: filter .4s, transform .45s cubic-bezier(.2, .7, .2, 1);
}

.logo-grid figcaption {
  padding-top: 14px;
  color: #777;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
}

.regional {
  position: relative;
  min-height: 590px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  background: #111;
}

.regional-image {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .93), rgba(0, 0, 0, .25)), url('assets/escolta-rodovia.png') center 55%/cover no-repeat;
  filter: grayscale(1);
}

.regional-content {
  position: relative;
  z-index: 1;
}

.regional-content h2 {
  max-width: 630px;
}

.regional-content>p:last-child {
  max-width: 520px;
  color: #ccc;
}

.contact {
  background: #f3f3f1;
}

.contact-heading {
  display: grid;
  grid-template-columns: 1fr 1.4fr .8fr;
  align-items: end;
  gap: 46px;
  margin-bottom: 58px;
}

.contact-heading .eyebrow {
  align-self: start;
  padding-top: 14px;
}

.contact-heading h2 {
  margin-bottom: 0;
}

.contact-heading>p:last-child {
  margin-bottom: 6px;
  color: #666;
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  min-height: 610px;
  border: 1px solid #c8c8c8;
  background: #fff;
}

.contact-details {
  display: flex;
  flex-direction: column;
  border-right: 1px solid #c8c8c8;
}

.contact-item {
  flex: 1;
  min-height: 102px;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  border-bottom: 1px solid #d5d5d5;
  transition: background .3s, color .3s, padding .3s;
}

.contact-item:last-child {
  border-bottom: 0;
}

.contact-item>span {
  align-self: start;
  padding-top: 5px;
  color: #8a8a8a;
  font-size: 9px;
}

.contact-item div {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}

.contact-item small {
  color: #777;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.contact-item strong {
  overflow-wrap: anywhere;
  font-size: 15px;
  line-height: 1.42;
}

.contact-item b {
  font-size: 20px;
  font-weight: 400;
  transition: transform .3s;
}

.contact-item.address {
  flex: 1.35;
}

.map-frame {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: #ddd;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 610px;
  border: 0;
  filter: grayscale(1) contrast(1.08);
  transition: filter .45s;
}

.map-frame>a {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 50px;
  padding: 0 18px;
  background: #080808;
  color: #fff;
  border: 1px solid #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .3s, background .3s, color .3s;
}

.final-cta {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  background: #111;
}

.final-media {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .95), rgba(0, 0, 0, .28)), url('assets/escolta-noturna.png') 70% 50%/cover no-repeat;
  filter: grayscale(1);
}

.final-content {
  position: relative;
  z-index: 1;
}

.final-content h2 {
  max-width: 750px;
}

.final-content>p:not(.eyebrow) {
  color: #ccc;
  font-size: 18px;
}

.footer {
  padding: 72px 0 24px;
  background: #050505;
  color: #aaa;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 60px;
}

.footer-brand img {
  width: 100px;
  filter: invert(1);
}

.footer-brand p {
  max-width: 240px;
  margin-top: 20px;
}

.footer h3 {
  margin-bottom: 22px;
  color: white;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.footer a,
.footer div>p {
  display: block;
  margin: 0 0 10px;
  font-size: 12px;
}

.footer-contact a:last-child {
  max-width: 250px;
  line-height: 1.55;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 22px;
  border-top: 1px solid #282828;
  font-size: 10px;
}

.whatsapp-float {
  position: fixed;
  z-index: 30;
  right: 24px;
  bottom: 24px;
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 18px;
  border: 1px solid #fff;
  background: #080808;
  color: #fff;
  box-shadow: 0 10px 35px rgba(0, 0, 0, .28);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: transform .3s, background .3s, color .3s;
}

.whatsapp-float strong {
  font-size: 18px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease var(--delay, 0ms), transform .7s cubic-bezier(.2, .7, .2, 1) var(--delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes heroIn {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroScale {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1.015);
  }
}

@media (hover:hover) and (pointer:fine) {
  .button:hover {
    transform: translateY(-3px);
  }

  .button-light:hover {
    background: #dcdcdc;
    border-color: #dcdcdc;
  }

  .button-outline:hover {
    background: white;
    color: #080808;
    border-color: white;
  }

  .nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .about-image:hover img {
    transform: scale(1.035);
    filter: grayscale(.35);
  }

  .service-card:hover img {
    transform: scale(1.055);
    filter: grayscale(.35) brightness(.72);
  }

  .service-card:hover .service-number {
    color: rgba(255, 255, 255, .08);
    transform: translateX(6px);
  }

  .service-card:hover .service-content p {
    opacity: 1;
    transform: none;
  }

  .service-card:hover .card-arrow {
    transform: translate(4px, -4px);
  }

  .process-grid article:hover {
    background: #1c1c1c;
    transform: translateY(-5px);
  }

  .logo-grid figure:hover {
    background: #fff;
    transform: translateY(-5px);
  }

  .logo-grid figure:hover img {
    filter: grayscale(0);
    transform: scale(1.055);
  }

  .contact-item:hover {
    padding-left: 34px;
    background: #0a0a0a;
    color: white;
  }

  .contact-item:hover small,
  .contact-item:hover>span {
    color: #aaa;
  }

  .contact-item:hover b {
    transform: translate(4px, -4px);
  }

  .map-frame:hover iframe {
    filter: grayscale(.15) contrast(1);
  }

  .map-frame>a:hover {
    transform: translateY(-3px);
    background: #fff;
    color: #080808;
  }

  .whatsapp-float:hover {
    transform: translateY(-4px);
    background: rgb(15, 205, 62);
    color: white;
  }

  .footer a:hover {
    color: white;
  }
}

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

  .container {
    width: min(100% - 32px, 1180px);
  }

  .site-header {
    width: calc(100% - 32px);
    height: 90px;
    grid-template-columns: 1fr auto;
  }

  .brand img {
    width: 76px;
    max-height: 74px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    z-index: 3;
  }

  .nav {
    position: fixed;
    top: 0;
    left: -16px;
    right: -16px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    padding: 80px 32px;
    background: rgba(5, 5, 5, .98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: .3s;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav a {
    font-size: 22px;
  }

  .hero {
    min-height: 820px;
    align-items: flex-end;
    padding-bottom: 150px;
  }

  .hero-media {
    background-position: 60% center;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(0, 0, 0, .98) 8%, rgba(0, 0, 0, .8) 55%, rgba(0, 0, 0, .22));
  }

  .hero-content {
    padding-top: 100px;
  }

  .hero-rail {
    justify-content: flex-start;
    gap: 18px;
    overflow: hidden;
    white-space: nowrap;
    padding-inline: 24px;
    flex-wrap: wrap;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .split,
  .section-heading,
  .compliance-grid,
  .contact-heading,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    justify-items: center;
  }

  .about-image {
    height: 540px;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card.featured {
    grid-column: span 1;
  }

  .service-card,
  .service-card.featured {
    min-height: 420px;
  }

  .service-content p {
    opacity: 1;
    transform: none;
  }

  .legal-stamp {
    width: min(300px, 100%);
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-grid article {
    border-bottom: 1px solid #353535;
  }

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

  .contact-grid {
    gap: 0;
  }

  .contact-details {
    border-right: 0;
    border-bottom: 1px solid #c8c8c8;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 500px;
  }

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

@media (max-width:560px) {
  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 38px;
  }

  .button-row,
  .service-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    min-height: 76px;
  }

  .service-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card.featured {
    min-height: 440px;
  }

  .process-grid article {
    min-height: auto;
  }

  .process-grid span {
    margin-bottom: 40px;
  }

  .regional,
  .final-cta {
    min-height: 650px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 52px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float span {
    display: none;
  }
}

@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}