/* ==========================================================
   COMPEL — Perfuração e Desmonte de Rocha
   Estilo editorial industrial
   ========================================================== */

/* ==========================================================
   MAPA DE EDICAO
   - :root guarda cores, fontes, larguras, raios e superficies usadas no site inteiro.
   - Blocos NAV, HERO, SOBRE, SERVICOS, SETORES, SEGURANCA, REGRAS, PROJETOS,
     CONTATO, CARREIRAS e FOOTER controlam as secoes com os mesmos nomes no HTML.
   - Classes reutilizadas como .container, .btn, .field, .section-title e .reveal
     afetam varias secoes e as duas paginas.
   - @media no fim ajusta tablet/celular; mudar ali altera responsividade.

   COMO MEXER COM MENOS RISCO
   - Textos e imagens: prefira editar index.html ou carreiras.html.
   - Cores e fontes globais: edite as variaveis em :root.
   - Layout de uma secao especifica: edite apenas o bloco CSS daquela secao.
   - Animacoes de entrada: veja .reveal e js/main.js.
   ========================================================== */

:root {
  /* EDITAR: paleta da marca. Mudar estas variaveis altera cores no site inteiro. */
  /* Brand */
  --navy-950: #070d20;
  --navy-900: #0a1128;
  --navy-800: #101b3e;
  --navy-700: #1a2456;
  --navy-500: #2b3d80;
  --navy-300: #6478b3;

  --red-700: #8f0a10;
  --red-600: #b31217;
  --red-500: #c81419;
  --red-300: #ec6a6e;

  /* Neutrals */
  --stone-50: #f6f4f0;
  --stone-100: #ece8e0;
  --stone-200: #dcd6c9;
  --stone-300: #b7ae9c;
  --stone-500: #6e685c;
  --stone-800: #2a2622;

  --ink: #0e1017;
  --paper: #f7f5f0;
  --white: #ffffff;

  /* EDITAR: familias de fonte usadas nos titulos e textos. */
  /* Type */
  --f-display: "Oswald", "Space Grotesk", sans-serif;
  --f-serif: "Oswald", "Space Grotesk", sans-serif;
  /* mesma família, distinção só no peso */
  --f-body: "Space Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;

  /* EDITAR: gutter controla margem lateral; wrap controla largura maxima do conteudo. */
  /* Rhythm */
  --gutter: clamp(20px, 4vw, 56px);
  --wrap: 1360px;

  /* EDITAR: arredondamento global dos componentes. */
  /* Radius */
  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-pill: 999px;

  --ease: cubic-bezier(.22, 1, .36, 1);

  --surface-light: rgba(247, 245, 240, .96);
  --surface-white: rgba(255, 255, 255, .96);
  --surface-dark: rgba(10, 17, 40, .84);
  --surface-dark-strong: rgba(5, 10, 26, .9);
  --surface-shadow: 0 28px 70px -48px rgba(14, 16, 23, .45);
}

/* Base ------------------------------------------------------ */
/* ALTERA: reset, corpo da pagina, fundo fixo e elementos HTML basicos. */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

@supports (overflow-x: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

/* Foto de pedreira como camada base fixa em todo o site */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: url('../assets/rock-wall.jpg') center center / cover no-repeat;
  filter: saturate(.85) contrast(1.05);
  will-change: transform;
}

/* Overlay leve para as seções claras "respirarem" a foto */
body.home-page::before {
  background-color: var(--navy-950);
  background-image: url('../assets/perfuratrizcompel.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: clamp(1500px, 140vw, 2700px) auto;
  filter: none;
}

@media (max-width: 640px) {
  body.home-page::before {
    background-position: 68% center;
    background-size: 230vw auto;
  }
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(7, 13, 32, .05) 0%, rgba(10, 17, 40, .08) 50%, rgba(7, 13, 32, .05) 100%);
  pointer-events: none;
}

body.home-page::after {
  background: none;
}

body.home-page .sobre,
body.home-page .servicos,
body.home-page .seguranca,
body.home-page .projetos,
body.home-page .contato {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.home-page .setores,
body.home-page .regras {
  background: rgba(7, 13, 32, .14);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

:where(h1, h2, h3, h4, h5, h6, p, li, a, span, label, button) {
  min-width: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.container {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Typography primitives ------------------------------------ */
/* ALTERA: titulos, subtitulos e textos destacados reutilizados em todas as secoes. */

.eyebrow {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--stone-500);
  display: inline-block;
  margin-bottom: 26px;
}

.eyebrow--light {
  color: rgba(255, 255, 255, .72);
}

.eyebrow--dark {
  color: var(--stone-500);
}

.section-title {
  font-family: var(--f-display);
  font-size: clamp(34px, 5.2vw, 82px);
  line-height: 1.06;
  letter-spacing: 0;
  margin: 0 0 24px;
  color: var(--ink);
  font-weight: 500;
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.section-title em {
  display: block;
  max-width: 100%;
  font-family: var(--f-display);
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0;
  color: inherit;
  opacity: .78;
  margin-top: .06em;
}

.section-title--light {
  color: var(--paper);
}

.section-head {
  max-width: 1000px;
  margin-bottom: 72px;
  background: var(--surface-light);
  padding: 42px 46px;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--surface-shadow);
}

.section-head--split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
  max-width: none;
}

.section-head__desc {
  font-size: 17px;
  line-height: 1.55;
  color: var(--stone-500);
  max-width: 380px;
  margin: 0;
}

.lead {
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 22px;
}

/* Buttons --------------------------------------------------- */
/* ALTERA: botoes globais. Classes .btn--primary, .btn--ghost e .btn--full sao combinaveis. */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  border-radius: var(--radius-pill);
  transition: transform .35s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  will-change: transform;
}

.btn svg {
  transition: transform .35s var(--ease);
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn--primary {
  background: var(--red-600);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--red-700);
}

.btn--ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255, 255, 255, .35);
}

.btn--ghost:hover {
  background: var(--paper);
  color: var(--navy-900);
  border-color: var(--paper);
}

.btn--lg {
  padding: 22px 34px;
  font-size: 15px;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* NAV ------------------------------------------------------- */
/* ALTERA: cabecalho fixo, logo, links, idiomas, CTA e menu mobile. */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}

.nav.is-scrolled {
  background: rgba(247, 245, 240, .96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(14, 16, 23, .06);
}

.nav__inner {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav__brand img {
  height: 82px;
  width: auto;
  transition: filter .3s, height .3s var(--ease);
}

.nav.is-scrolled .nav__brand img {
  height: 62px;
}

/* Logo aparece branca no hero, azul quando rolar */
.nav:not(.is-scrolled) .nav__brand img {
  filter: brightness(0) invert(1);
}

.nav__links {
  display: flex;
  gap: 34px;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--white);
  transition: color .4s var(--ease);
}

.nav.is-scrolled .nav__links {
  color: var(--ink);
}

.nav__links a {
  position: relative;
  padding: 6px 0;
  transition: color .25s;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: currentColor;
  transition: width .3s var(--ease);
}

.nav__links a:hover {
  color: var(--ink);
}

.nav:not(.is-scrolled) .nav__links a:hover {
  color: var(--paper);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__links a.is-active {
  color: var(--red-500);
}

.nav__links a.is-active::after {
  width: 100%;
  background: var(--red-500);
}

.nav.is-scrolled .nav__links a.is-active {
  color: var(--red-600);
}

.nav.is-scrolled .nav__links a.is-active::after {
  background: var(--red-600);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__lang {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__lang button {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  opacity: 0.8;
}

.nav__lang button:hover {
  opacity: 1;
  transform: scale(1.05);
}

.nav__lang button img {
  border-radius: 3px;
  display: block;
  object-fit: cover;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}


.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px;
  border: 1.5px solid rgba(255, 255, 255, .4);
  border-radius: var(--radius-pill);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: all .3s var(--ease);
}

.nav.is-scrolled .nav__cta {
  border-color: var(--ink);
  color: var(--ink);
}

.nav__cta:hover {
  background: var(--red-600);
  border-color: var(--red-600);
  color: var(--white);
}

.nav.is-scrolled .nav__cta:hover {
  background: var(--red-600);
  border-color: var(--red-600);
  color: var(--white);
}

.nav__burger {
  display: none;
  width: 34px;
  height: 34px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0;
}

.nav__burger span {
  display: block;
  height: 1.6px;
  background: var(--white);
  transition: background .3s, transform .3s;
}

.nav.is-scrolled .nav__burger span {
  background: var(--ink);
}

/* HERO ------------------------------------------------------ */
/* ALTERA: primeira dobra da home, imagem de fundo, galeria, slideshow e indicadores. */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 0 100px;
  color: var(--paper);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  filter: saturate(.9) brightness(.85) contrast(1.05);
  animation: heroDrift 30s ease-in-out infinite alternate;
}

@keyframes heroDrift {
  from {
    transform: scale(1.05) translate(-1%, -1%);
  }

  to {
    transform: scale(1.12) translate(1.5%, 1%);
  }
}

.hero__vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 13, 32, .35) 0%, rgba(10, 17, 40, .20) 40%, rgba(7, 13, 32, .35) 100%),
    linear-gradient(90deg, rgba(7, 13, 32, .55) 0%, rgba(7, 13, 32, .22) 55%, rgba(7, 13, 32, .05) 100%),
    radial-gradient(1200px 500px at 80% 20%, rgba(179, 18, 23, .16), transparent 60%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--wrap);
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 80px;
  align-items: center;
}

.hero__text {
  max-width: 720px;
}

/* Galeria à direita ---------------------------------------- */
.hero__gallery {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.hero__card {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #0a1128;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .65);
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}

.hero__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .8);
}

/* As duas telas da galeria possuem exatamente o mesmo tamanho. */
.hero__card--main,
.hero__card--sub {
  aspect-ratio: 4 / 3;
}

.hero__card--sub {
  margin-left: 0;
}

/* --- Slideshow crossfade --- */
.slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  filter: saturate(.95) contrast(1.02);
  animation: heroFade 24s infinite;
  will-change: opacity;
}

.hero__card--main.slideshow img {
  object-fit: cover;
}

/* Card principal: 4 fotos, 6s cada, total 24s */
.hero__card--main img:nth-child(1) {
  animation-delay: 0s;
}

.hero__card--main img:nth-child(2) {
  animation-delay: 6s;
}

.hero__card--main img:nth-child(3) {
  animation-delay: 12s;
}

.hero__card--main img:nth-child(4) {
  animation-delay: 18s;
}

/* Card secundário: 3 fotos, 8s cada, total 24s (mesma duração pra ficar em sincronia) */
.hero__card--sub img {
  animation-duration: 24s;
  animation-name: heroFadeTri;
}

.hero__card--sub img:nth-child(1) {
  animation-delay: 0s;
}

.hero__card--sub img:nth-child(2) {
  animation-delay: 8s;
}

.hero__card--sub img:nth-child(3) {
  animation-delay: 16s;
}

@keyframes heroFade {
  0% {
    opacity: 0;
  }

  3% {
    opacity: 1;
  }

  25% {
    opacity: 1;
  }

  28% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes heroFadeTri {
  0% {
    opacity: 0;
  }

  3% {
    opacity: 1;
  }

  33% {
    opacity: 1;
  }

  36% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/* Ken-Burns leve enquanto a foto está visível */
.slideshow img {
  transform: none;
  transition: transform 24s linear;
}

.hero__card:hover .slideshow img,
.slideshow img {
  animation-play-state: running;
}

/* Accessibility: reduz motion */
@media (prefers-reduced-motion: reduce) {
  .slideshow img {
    animation: none;
  }

  .slideshow img:first-child {
    opacity: 1;
  }
}

/* Marca de crédito discreta */
.hero__gallery::before {
  content: "";
  position: absolute;
  right: -12px;
  top: -18px;
  width: 60px;
  height: 60px;
  border-top: 1px solid rgba(255, 255, 255, .55);
  border-right: 1px solid rgba(255, 255, 255, .55);
  opacity: .6;
}

.hero__gallery::after {
  content: "";
  position: absolute;

  left: -12px;
  bottom: -15px;

  width: 60px;
  height: 60px;

  border-bottom: 1px solid rgba(255, 255, 255, .55);
  border-left: 1px solid rgba(255, 255, 255, .55);
  opacity: .6;
  pointer-events: none;
}

.hero__title {
  font-family: var(--f-display);
  font-size: clamp(34px, 4.2vw, 66px);
  line-height: 1.15;
  letter-spacing: -.005em;
  font-weight: 500;
  margin: 0 0 30px;
  max-width: 16ch;
  color: var(--paper);
  text-shadow: 0 3px 20px rgba(0, 0, 0, .5);
}

.hero__title .line {
  display: block;
}

.hero__title .line--serif {
  font-family: var(--f-display);
  font-style: normal;
  font-weight: 500;
  letter-spacing: -.005em;
  color: var(--paper);
  opacity: 1;
  padding-left: 0;
}

.hero__lead {
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.55;
  max-width: 620px;
  color: rgba(255, 255, 255, .88);
  margin: 0 0 44px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .45);
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 90px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  list-style: none;
  padding: 32px 0 0;
  margin: 0;
  max-width: 780px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.hero__stats li {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero__stats strong {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(36px, 4.3vw, 58px);
  line-height: 1;
  color: var(--paper);
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .45);
}

.hero__stats strong span {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
}

.hero__stats li>span {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .02em;
}

.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: 40px;
  z-index: 3;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  color: rgba(255, 255, 255, .6);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero__scroll svg {
  transform: rotate(180deg);
  animation: scrollHint 2.4s var(--ease) infinite;
}

@keyframes scrollHint {

  0%,
  100% {
    transform: rotate(180deg) translateY(0);
    opacity: .7;
  }

  50% {
    transform: rotate(180deg) translateY(8px);
    opacity: 1;
  }
}

/* MARQUEE --------------------------------------------------- */
/* ALTERA: faixa horizontal animada abaixo do hero. O conteudo vem do HTML. */

.marquee {
  background: rgba(7, 13, 32, .96);
  color: var(--paper);
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  overflow: hidden;
  padding: 22px 0;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.marquee__track {
  display: inline-flex;
  gap: 42px;
  white-space: nowrap;
  animation: marquee 45s linear infinite;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: .04em;
}

.marquee__track span:nth-child(odd) {
  color: var(--paper);
}

.marquee__track span:nth-child(even) {
  color: rgba(255, 255, 255, .35);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* SOBRE ----------------------------------------------------- */
/* ALTERA: secao institucional "Sobre" da pagina inicial. */

.sobre {
  padding: 140px 0 140px;
  background: rgba(247, 245, 240, 0.35);
  position: relative;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.sobre::before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--gutter);
  right: var(--gutter);
  height: 1px;
  background: var(--stone-200);
}

.sobre__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: clamp(42px, 6vw, 96px);
  align-items: start;
}

.sobre__left {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 32px;
  padding: clamp(32px, 3.2vw, 44px);
  background: rgba(247, 245, 240, .88);
  border: 1px solid rgba(220, 214, 201, .86);
  border-radius: var(--radius-lg);
  box-shadow: var(--surface-shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
}

.sobre__left::before {
  content: none;
}

.sobre__left .section-title {
  margin-bottom: 0;
  font-size: clamp(40px, 4vw, 50px);
  line-height: 1.02;
}

.sobre__media {
  position: relative;
  min-height: 340px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--stone-100);
  border: 1px solid rgba(183, 174, 156, .55);
  box-shadow: 0 22px 54px -44px rgba(14, 16, 23, .55);
}

.sobre__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 13, 32, .05), rgba(7, 13, 32, .24));
  z-index: 1;
  pointer-events: none;
}

.sobre__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.92) contrast(1.03);
  z-index: 0;
}

.sobre__media--slideshow img {
  opacity: 0;
  animation: sobreMediaFade 20s infinite;
}

.sobre__media--slideshow img:nth-child(1) {
  animation-delay: 0s;
}

.sobre__media--slideshow img:nth-child(2) {
  animation-delay: 4s;
}

.sobre__media--slideshow img:nth-child(3) {
  animation-delay: 8s;
}

.sobre__media--slideshow img:nth-child(4) {
  animation-delay: 12s;
}

.sobre__media--slideshow img:nth-child(5) {
  animation-delay: 16s;
}

@keyframes sobreMediaFade {
  0% {
    opacity: 0;
  }

  2% {
    opacity: 1;
  }

  18% {
    opacity: 1;
  }

  22% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sobre__media--slideshow img {
    animation: none;
  }

  .sobre__media--slideshow img:first-child {
    opacity: 1;
  }
}

.sobre__right {
  background: var(--surface-light);
  padding: clamp(32px, 3.6vw, 48px);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--surface-shadow);
  position: relative;
  overflow: hidden;
}

.sobre__right::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--red-600), rgba(10, 17, 40, .2));
}

.sobre__right p {
  margin: 0 0 22px;
  color: var(--stone-800);
  font-size: 16.5px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.sobre__right p.lead {
  color: var(--ink);
  font-weight: 400;
  font-size: clamp(18px, 1.35vw, 21px);
  line-height: 1.52;
}

.sobre__pills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 36px;
  position: relative;
  z-index: 1;
}

.sobre__pills span {
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  min-height: 68px;
  padding: 13px 14px 13px 25px;
  border: 1px solid var(--stone-300);
  background: rgba(255, 255, 255, .82);
  color: var(--navy-950);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 16px;
}

.sobre__pills span::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 50%;
  width: 4px;
  height: 24px;
  border-radius: var(--radius-pill);
  background: var(--red-600);
  box-shadow: none;
  transform: translateY(-50%);
}

.sobre__pills strong {
  color: var(--navy-950);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.1;
  text-transform: uppercase;
}

.sobre__pills small {
  color: var(--stone-800);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .01em;
  line-height: 1.25;
}

/* SERVIÇOS -------------------------------------------------- */

/* EDITAR: espacamento e fundo da secao de servicos; cards ficam em .servicos__grid e .serv. */
.servicos {
  padding: 140px 0;
  background: rgba(246, 244, 240, 0.35);
  border-top: 1px solid var(--stone-200);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.servicos .section-head {
  width: 100%;
  max-width: none;
  margin: 0 0 clamp(24px, 2.5vw, 36px);
  padding: clamp(18px, 2vw, 28px) clamp(20px, 3vw, 44px);
  text-align: center;
}

.servicos .section-title {
  max-width: 1120px;
  margin-inline: auto;
  font-size: clamp(24px, 2.8vw, 42px);
  line-height: 1.05;
}

.servicos__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.serv {
  background: var(--surface-light);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-md);
  padding: clamp(28px, 3vw, 36px) clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 48px -44px rgba(14, 16, 23, .45);
  transition: transform .5s var(--ease), border-color .3s, box-shadow .5s var(--ease);
  overflow: hidden;
}

.serv:hover {
  box-shadow: 0 20px 40px -20px rgba(14, 16, 23, .25);
}

.serv::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}

.serv:hover {
  border-color: var(--stone-300);
  transform: translateY(-4px);
}

.serv:hover::before {
  transform: scaleX(1);
}

.serv__num {
  font-family: var(--f-display);
  font-size: 14px;
  color: var(--stone-500);
  letter-spacing: .16em;
}

.serv__media {
  width: 100%;
  height: clamp(132px, 13vw, 180px);
  border-radius: 16px;
  overflow: hidden;
  background: var(--stone-100);
  border: 1px solid var(--stone-200);
}

.serv__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.9) contrast(1.03);
}

.serv h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(26px, 2.5vw, 32px);
  line-height: 1.05;
  margin: 0;
  letter-spacing: 0;
  color: var(--ink);
}

.serv p {
  color: var(--stone-500);
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
}

.serv ul {
  list-style: none;
  padding: 12px 0 0;
  margin: 0;
  border-top: 1px solid var(--stone-200);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.serv ul li {
  font-size: 14px;
  color: var(--stone-800);
  position: relative;
  padding-left: 20px;
}

.serv ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 1.5px;
  background: var(--stone-500);
}

.serv--accent {
  background: var(--surface-dark-strong);
  border-color: var(--navy-900);
  color: var(--paper);
}

.serv--accent h3 {
  color: var(--paper);
}

.serv--accent p {
  color: rgba(255, 255, 255, .78);
}

.serv--accent .serv__icon {
  color: var(--paper);
}

.serv--accent .serv__num {
  color: rgba(255, 255, 255, .55);
}

.serv--accent ul {
  border-color: rgba(255, 255, 255, .14);
}

.serv--accent ul li {
  color: rgba(255, 255, 255, .8);
}

/* SETORES --------------------------------------------------- */
/* ALTERA: grade escura de setores atendidos e seus efeitos visuais. */

.setores {
  padding: 140px 0;
  background: rgba(7, 13, 32, 0.35);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.setores::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 80% 10%, rgba(179, 18, 23, .16), transparent 70%),
    radial-gradient(500px 300px at 10% 90%, rgba(43, 61, 128, .28), transparent 70%);
  pointer-events: none;
}

.setores::after {
  content: none;
}

.setores .container {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .72fr);
  grid-template-areas:
    "head visual"
    "cards cards";
  gap: 28px;
}

.setores__grid {
  grid-area: cards;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 22px;
}

.setores .section-head,
.regras__head {
  background: var(--surface-dark);
  border-color: rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 28px 70px -48px rgba(0, 0, 0, .75);
}

.setores .section-head {
  grid-area: head;
  min-height: 430px;
  margin-bottom: 0;
  padding: clamp(38px, 5vw, 68px);
  display: grid;
  grid-template-columns: 1fr;
  align-content: space-between;
  gap: 38px;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(12, 22, 52, .94), rgba(8, 15, 36, .82)),
    radial-gradient(620px 280px at 92% 8%, rgba(255, 255, 255, .1), transparent 62%);
  border: 1px solid rgba(255, 255, 255, .16);
  overflow: hidden;
  position: relative;
}

.setores .section-head::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
}

.setores .section-head__desc {
  color: rgba(255, 255, 255, .76);
  max-width: 440px;
  font-size: clamp(16px, 1.3vw, 19px);
}

.setores__visual {
  grid-area: visual;
  min-height: 430px;
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  background: var(--navy-900);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 32px 90px -58px rgba(0, 0, 0, .82);
}

.setores__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.9) contrast(1.05);
  transform: none;
}

.setores__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 13, 32, .06), rgba(7, 13, 32, .72)),
    linear-gradient(90deg, rgba(179, 18, 23, .12), transparent 48%);
  z-index: 1;
}

.setor {
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(14, 26, 58, .88), rgba(7, 13, 32, .74));
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background .35s var(--ease), transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
  min-height: 340px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 22px 70px -54px rgba(0, 0, 0, .75);
}

.setor::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #68b684, rgba(255, 255, 255, .12));
}

.setor::after {
  content: "";
  position: absolute;
  right: -50px;
  top: -50px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  opacity: .9;
  pointer-events: none;
}

.setor > * {
  position: relative;
  z-index: 1;
}

.setor:nth-child(2)::before {
  background: linear-gradient(90deg, var(--red-500), rgba(255, 255, 255, .12));
}

.setor:nth-child(3)::before {
  background: linear-gradient(90deg, #d8c78f, rgba(255, 255, 255, .12));
}

.setor__icon {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9cd2ad;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 20px;
  background: rgba(255, 255, 255, .06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16);
}

.setor:nth-child(2) .setor__icon {
  color: #ff8588;
}

.setor:nth-child(3) .setor__icon {
  color: #ead89c;
}

.setor__icon svg {
  width: 34px;
  height: 34px;
}

.setor:hover {
  background:
    linear-gradient(180deg, rgba(18, 34, 74, .94), rgba(8, 15, 36, .82));
  border-color: rgba(255, 255, 255, .26);
  transform: translateY(-8px);
  box-shadow: 0 32px 80px -48px rgba(0, 0, 0, .88);
}

.setor--dark {
  background:
    linear-gradient(180deg, rgba(8, 15, 36, .94), rgba(7, 13, 32, .82));
}

.setor--dark:hover {
  background:
    linear-gradient(180deg, rgba(18, 34, 74, .94), rgba(8, 15, 36, .82));
}

.setor__num {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, .62);
  letter-spacing: .12em;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.setor h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(30px, 3.1vw, 46px);
  line-height: .98;
  color: var(--paper);
  margin: 0;
  max-width: 11ch;
}

.setor p {
  color: rgba(255, 255, 255, .78);
  font-size: 15.5px;
  line-height: 1.68;
  margin: 0;
  max-width: 42ch;
}

/* SEGURANÇA ------------------------------------------------- */

/* EDITAR: espacamento e fundo da secao de seguranca/conformidade. */
.seguranca {
  padding: 140px 0;
  background: rgba(247, 245, 240, 0.35);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.seguranca__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.seguranca__left p {
  color: var(--stone-500);
  margin: 0 0 22px;
}

.seguranca__left,
.contato__info,
.carreiras__info {
  background: var(--surface-light);
  padding: 48px;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--surface-shadow);
}

.seguranca__list {
  list-style: none;
  margin: 0;
  padding: 8px 32px;
  display: flex;
  flex-direction: column;
  background: var(--surface-light);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--surface-shadow);
}

.seguranca__list li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  padding: 32px 0;
  border-top: 1px solid var(--stone-200);
}

.seguranca__list li:last-child {
  border-bottom: 1px solid var(--stone-200);
}

.seguranca__list .num {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 40px;
  line-height: 1;
  color: var(--stone-500);
}

.seguranca__list h4 {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 20px;
  margin: 0 0 8px;
  color: var(--ink);
}

.seguranca__list p {
  margin: 0;
  color: var(--stone-500);
  font-size: 15.5px;
  line-height: 1.6;
}

/* REGRAS DE OURO -------------------------------------------- */

/* EDITAR: espacamento, fundo e camadas visuais da secao de regras de ouro. */
.regras {
  position: relative;
  padding: 130px 0;
  background: rgba(7, 13, 32, 0.35);
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.regras::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 320px at 88% 8%, rgba(179, 18, 23, .18), transparent 65%),
    radial-gradient(500px 300px at 5% 95%, rgba(43, 61, 128, .22), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.regras .container {
  position: relative;
  z-index: 1;
}

/* HEAD */
.regras__head {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .75fr) 120px;
  gap: 44px;
  align-items: center;
  margin-bottom: 54px;
  padding: clamp(34px, 4vw, 58px);
  border: 1px solid rgba(255, 255, 255, .16);
  position: relative;
  overflow: hidden;
}

.regras__head::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: calc(var(--radius-lg) - 10px);
  pointer-events: none;
}

.regras__head-left,
.regras__desc,
.regras__signal {
  position: relative;
  z-index: 1;
}

.regras__eyebrow {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
  margin-bottom: 22px;
}

.regras__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(54px, 7.4vw, 112px);
  line-height: .88;
  letter-spacing: 0;
  margin: 0;
  color: var(--paper);
}

.regras__title em {
  font-family: var(--f-display);
  font-style: normal;
  font-weight: 300;
  color: var(--paper);
  opacity: .85;
  letter-spacing: 0;
}

.regras__desc {
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.7;
  color: rgba(255, 255, 255, .8);
  margin: 0;
  max-width: 42ch;
}

.regras__signal {
  justify-self: end;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 28px;
  background: rgba(255, 255, 255, .06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16);
}

.regras__signal span {
  position: absolute;
  width: 54px;
  height: 54px;
  border: 1.5px solid rgba(255, 255, 255, .62);
  border-radius: 50%;
}

.regras__signal span:nth-child(2) {
  width: 38px;
  height: 38px;
  border-color: rgba(255, 255, 255, .38);
}

.regras__signal span:nth-child(3) {
  width: 8px;
  height: 8px;
  background: var(--red-500);
  border-color: var(--red-500);
}

/* GRID DE CARDS */
.regras__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: regra;
}

.regra {
  background:
    linear-gradient(180deg, rgba(15, 27, 60, .88), rgba(7, 13, 32, .74));
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 28px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: background .35s var(--ease), transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
  min-height: 248px;
  overflow: hidden;
  box-shadow: 0 24px 70px -56px rgba(0, 0, 0, .78);
}

.regra:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, .28);
  box-shadow: 0 34px 90px -54px rgba(0, 0, 0, .9);
}

.regra::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--red-500), rgba(255, 255, 255, .12));
  transform: scaleX(.34);
  transform-origin: left;
  transition: transform .4s var(--ease);
}

.regra:hover::before {
  transform: scaleX(1);
}

.regra::after {
  content: "";
  position: absolute;
  right: -54px;
  top: -54px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  pointer-events: none;
}

.regra > * {
  position: relative;
  z-index: 1;
}

.regra__num {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 42px;
  line-height: 1;
  color: var(--paper);
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 8px;
}

.regra__num::after {
  content: "";
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 14px;
  background:
    linear-gradient(135deg, transparent 45%, rgba(255, 255, 255, .78) 46% 52%, transparent 53%),
    rgba(255, 255, 255, .06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14);
}

.regra:nth-child(2) .regra__num::after {
  background:
    linear-gradient(rgba(255, 255, 255, .78) 0 0) center 14px / 20px 2px no-repeat,
    linear-gradient(rgba(255, 255, 255, .78) 0 0) center 21px / 14px 2px no-repeat,
    rgba(255, 255, 255, .06);
}

.regra:nth-child(3) .regra__num::after {
  border-radius: 50%;
  background:
    linear-gradient(rgba(255, 255, 255, .78) 0 0) center / 20px 2px no-repeat,
    rgba(255, 255, 255, .06);
}

.regra:nth-child(4) .regra__num::after {
  background:
    linear-gradient(135deg, transparent 46%, rgba(255, 255, 255, .78) 47% 52%, transparent 53%),
    linear-gradient(45deg, transparent 46%, rgba(255, 255, 255, .78) 47% 52%, transparent 53%),
    rgba(255, 255, 255, .06);
}

.regra:nth-child(5) .regra__num::after {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, .78) 0 4px, transparent 5px),
    linear-gradient(rgba(255, 255, 255, .78) 0 0) center 25px / 16px 2px no-repeat,
    rgba(255, 255, 255, .06);
}

.regra:nth-child(6) .regra__num::after {
  background:
    linear-gradient(rgba(255, 255, 255, .78) 0 0) center 13px / 18px 2px no-repeat,
    linear-gradient(rgba(255, 255, 255, .78) 0 0) center 20px / 18px 2px no-repeat,
    linear-gradient(rgba(255, 255, 255, .78) 0 0) center 27px / 12px 2px no-repeat,
    rgba(255, 255, 255, .06);
}

.regra__title {
  font-family: var(--f-body);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--paper);
  margin: 0;
  line-height: 1.25;
}

.regra p {
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .78);
  margin: 0;
}

/* FOOT */
.regras__foot {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 44px;
  padding: 28px 34px;
  background:
    linear-gradient(90deg, rgba(12, 22, 52, .94), rgba(8, 15, 36, .78));
  border: 1px solid rgba(255, 255, 255, .14);
  border-left: 4px solid var(--red-500);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 24px 70px -56px rgba(0, 0, 0, .85);
}

.regras__foot-mark {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, .85);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, .1), 0 0 0 14px rgba(255, 255, 255, .04);
}

.regras__foot p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .78);
}

.regras__foot strong {
  display: inline;
  color: var(--paper);
  font-weight: 600;
  margin-right: 8px;
}

@media (max-width: 1080px) {
  .regras__head {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }

  .regras__signal {
    justify-self: start;
    width: 76px;
    height: 76px;
    border-radius: 22px;
  }

  .regras__signal span {
    width: 42px;
    height: 42px;
  }

  .regras__signal span:nth-child(2) {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 900px) {
  .regras__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .regras {
    padding: 100px 0;
  }
}

@media (max-width: 560px) {
  .regras__grid {
    grid-template-columns: 1fr;
  }

  .regras__head {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .regra {
    min-height: auto;
    padding: 28px 24px;
    border-radius: 22px;
  }

  .regra__num {
    font-size: 36px;
  }

  .regras__foot {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
    border-radius: 22px;
  }
}

/* PROJETOS -------------------------------------------------- */
/* ALTERA: lista de projetos/cases e interacoes de hover. */

.projetos {
  position: relative;
  min-height: 0;
  padding: clamp(76px, 8vw, 124px) 0;
  background:
    radial-gradient(820px 460px at 86% 18%, rgba(43, 61, 128, .24), transparent 68%),
    linear-gradient(135deg, rgba(7, 13, 32, .94), rgba(10, 17, 40, .82));
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: var(--paper);
  overflow: hidden;
}

.projetos-map {
  display: block;
  width: 100%;
  margin: 0;
}

.projetos__intro {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 clamp(30px, 4vw, 52px);
  padding: 22px 28px 24px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 20px;
  background: rgba(7, 13, 32, .86);
  color: var(--paper);
  text-align: center;
  box-shadow: 0 20px 42px -30px rgba(0, 0, 0, .9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.projetos__title {
  margin: 0;
  color: var(--paper);
  font-family: var(--f-display);
  font-size: clamp(44px, 6vw, 82px);
  font-weight: 500;
  line-height: .98;
}

.projetos__subtitle {
  max-width: 300px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.45;
  letter-spacing: .01em;
}

.projetos__intro .eyebrow {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, .58);
}

.projetos-map__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, .72fr);
  gap: 22px;
  align-items: stretch;
}

.projetos-map__canvas {
  order: 1;
}

.projetos-map__details {
  order: 2;
}

.projetos-map__details {
  display: flex;
  min-height: 620px;
  flex-direction: column;
  padding: clamp(26px, 3vw, 42px);
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 28px;
  background: rgba(247, 245, 240, .96);
  color: var(--ink);
  box-shadow: 0 28px 60px -46px rgba(0, 0, 0, .9);
}

.projetos-map__details-main {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--stone-200);
}

.projetos-map__kicker,
.projetos-map__locations-head > span {
  display: block;
  color: var(--red-600);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.projetos-map__details h3 {
  margin: 14px 0 10px;
  color: var(--navy-950);
  font-family: var(--f-display);
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 500;
  line-height: 1;
}

.projetos-map__details-main p {
  max-width: 340px;
  margin: 0;
  color: var(--stone-500);
  font-size: 15px;
  line-height: 1.5;
}

.projetos-map__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 24px 0;
  border-bottom: 1px solid var(--stone-200);
}

.projetos-map__stats div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
}

.projetos-map__stats strong {
  color: var(--navy-900);
  font-family: var(--f-display);
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 500;
  line-height: 1;
}

.projetos-map__stats span {
  color: var(--stone-500);
  font-size: 10px;
  line-height: 1.3;
}

.projetos-map__locations {
  margin-top: auto;
  padding-top: 24px;
}

.projetos-map__locations-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.projetos-map__locations-head small {
  color: var(--stone-500);
  font-size: 11px;
}

.projetos-map__location-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.map-location {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  padding: 10px 11px;
  border: 1px solid transparent;
  border-radius: 9px;
  color: var(--stone-800);
  font-size: 12px;
  text-align: left;
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}

.map-location small {
  flex: 0 0 auto;
  color: var(--stone-500);
  font-size: 10px;
  font-weight: 700;
}

.map-location:hover,
.map-location:focus-visible,
.map-location.is-active {
  border-color: rgba(179, 18, 23, .28);
  background: rgba(179, 18, 23, .08);
  color: var(--red-700);
  outline: none;
  transform: translateX(2px);
}

.projetos-map__canvas {
  position: relative;
  min-height: clamp(560px, 48vw, 700px);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 28px;
  background:
    radial-gradient(520px 360px at 66% 40%, rgba(100, 120, 179, .2), transparent 70%),
    linear-gradient(145deg, rgba(18, 31, 67, .95), rgba(7, 13, 32, .94));
  overflow: visible;
  box-shadow: 0 28px 60px -44px rgba(0, 0, 0, .9);
  isolation: isolate;
}

.projetos-map__canvas::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background-image: radial-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to bottom, transparent, #000 24%, #000 72%, transparent);
  opacity: .25;
  pointer-events: none;
}

.projetos-map__canvas-label {
  position: absolute;
  top: 24px;
  right: 28px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, .58);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.projetos-map__canvas-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red-500);
  box-shadow: 0 0 0 5px rgba(200, 20, 25, .12);
}

.projetos-map__image {
  position: absolute;
  top: 50%;
  bottom: auto;
  left: 50%;
  width: min(94%, 660px);
  aspect-ratio: 612.51611 / 639.04297;
  max-width: 660px;
  transform: translate(-50%, -50%);
  transform-origin: center;
}

.projetos-map__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
  opacity: 0;
}

.projetos-map__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #324960;
  pointer-events: none;
  -webkit-mask: url("../assets/brazil.svg") center / contain no-repeat;
  mask: url("../assets/brazil.svg") center / contain no-repeat;
}

.projetos-map__shape {
  position: absolute;
  inset: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
}

.map-brazil {
  fill: rgba(255, 255, 255, .8);
  stroke: rgba(42, 38, 34, .22);
  stroke-width: 3.2;
  filter: drop-shadow(0 22px 26px rgba(42, 38, 34, .1));
}

.map-region {
  fill: rgba(236, 232, 224, .78);
  stroke: rgba(42, 38, 34, .2);
  stroke-width: 2;
}

.map-region--go {
  fill: rgba(179, 18, 23, .12);
}

.map-region--mt,
.map-region--to {
  fill: rgba(255, 255, 255, .54);
}

.map-divider {
  fill: none;
  stroke: rgba(42, 38, 34, .14);
  stroke-width: 2;
  stroke-linecap: round;
}

.map-route {
  fill: none;
  stroke: rgba(179, 18, 23, .4);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 10 12;
}

.projetos-map__shape text {
  font-family: var(--f-display);
  font-size: 38px;
  font-weight: 500;
  fill: rgba(42, 38, 34, .18);
  letter-spacing: .04em;
}

.projetos-map__shape .map-country-label {
  font-size: 28px;
  letter-spacing: .16em;
  fill: rgba(42, 38, 34, .16);
}

.map-pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 52px;
  height: 60px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transform: translate(calc(-50% + var(--shift-x, 0px)), calc(-100% + var(--shift-y, 0px)));
  transition: transform .25s var(--ease);
  z-index: 4;
}

.map-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 7px;
  width: 28px;
  height: 28px;
  border: 3px solid var(--white);
  border-radius: 50% 50% 50% 0;
  background: var(--red-600);
  box-shadow: 0 16px 24px -14px rgba(14, 16, 23, .9);
  transform: translateX(-50%) rotate(-45deg);
  transition: background .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}

.map-pin span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 19px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white);
  transform: translateX(-50%);
  z-index: 1;
}

.map-pin::before {
  content: attr(data-title) "\A" attr(data-detail);
  position: absolute;
  left: 44px;
  top: 18px;
  width: max-content;
  max-width: 260px;
  padding: 10px 12px;
  border: 1px solid rgba(183, 174, 156, .72);
  border-radius: 10px;
  background: rgba(255, 255, 255, .92);
  color: var(--stone-800);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: .02em;
  text-align: left;
  white-space: pre-line;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(-4px);
  transition: opacity .2s var(--ease), transform .2s var(--ease);
  z-index: 30;
}

.map-pin span {
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  overflow: hidden;
  clip-path: none;
  white-space: nowrap;
  pointer-events: none;
  color: transparent;
  font-size: 0;
}

.map-pin:hover,
.map-pin:focus-visible,
.map-pin.is-active {
  transform: translate(calc(-50% + var(--shift-x, 0px)), calc(-100% + var(--shift-y, 0px))) scale(1.12);
  outline: none;
  z-index: 30;
}

.map-pin:hover::after,
.map-pin:focus-visible::after,
.map-pin.is-active::after {
  background: var(--navy-900);
  box-shadow: 0 20px 32px -16px rgba(14, 16, 23, .95);
}

.map-pin:hover::before,
.map-pin:focus-visible::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.map-pin--tooltip-left::before {
  left: auto;
  right: 44px;
  transform: translateY(-50%) translateX(4px);
}

.map-pin--tooltip-left:hover::before,
.map-pin--tooltip-left:focus-visible::before {
  transform: translateY(-50%) translateX(0);
}

/* CONTATO --------------------------------------------------- */
/* ALTERA: dados de contato e formulario comercial da home. */

.contato {
  padding: 140px 0;
  background: rgba(247, 245, 240, 0.35);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.contato__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.contato__lead {
  max-width: 430px;
  margin: -4px 0 34px;
  color: var(--stone-500);
  font-size: 17px;
  line-height: 1.55;
}

.contato__block {
  padding: 24px 0;
  border-top: 1px solid var(--stone-200);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contato__block:last-child {
  border-bottom: 1px solid var(--stone-200);
}

.contato__block>span:first-child {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--stone-500);
  margin-bottom: 4px;
}

.contato__block a {
  font-size: 17px;
  color: var(--ink);
  transition: color .3s;
}

.contato__block a:hover {
  color: var(--ink);
  opacity: .7;
}

.contato__block p {
  margin: 0;
  font-size: 15px;
  color: var(--stone-500);
  line-height: 1.6;
}

.contato__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  background: var(--surface-white);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg);
  padding: 48px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--surface-shadow);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  grid-column: span 2;
}

.field--half {
  grid-column: span 1;
}

.field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--stone-500);
}

.field input,
.field select,
.field textarea {
  font: inherit;
  padding: 14px 18px;
  border: 1px solid var(--stone-200);
  background: var(--paper);
  color: var(--ink);
  transition: border-color .3s, background .3s;
  border-radius: var(--radius-sm);
}

.field input[type="file"] {
  min-height: 56px;
  cursor: pointer;
}

.field input[type="file"]::file-selector-button {
  margin-right: 14px;
  padding: 9px 14px;
  border: 1px solid var(--stone-300);
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
}

.file-control {
  position: relative;
}

.file-control input[type="file"] {
  width: 100%;
  min-width: 0;
  padding-right: 54px;
}

.file-control__clear {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--stone-300);
  border-radius: 50%;
  background: var(--white);
  color: var(--stone-500);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%);
  transition: opacity .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}

.file-control.has-file .file-control__clear {
  opacity: 1;
  pointer-events: auto;
}

.file-control__clear:hover,
.file-control__clear:focus-visible {
  background: var(--red-600);
  border-color: var(--red-600);
  color: var(--white);
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy-700);
  background: var(--white);
}

.field textarea {
  resize: vertical;
}

.contato__form .btn {
  grid-column: span 2;
  margin-top: 8px;
}

.form__note {
  grid-column: span 2;
  margin: 0;
  font-size: 12px;
  color: var(--stone-500);
  text-align: center;
}

.form__status {
  grid-column: span 2;
  min-height: 1.2em;
  margin: 0;
  font-size: 13px;
  color: var(--stone-500);
  text-align: center;
}

.form__status.is-success {
  color: #167044;
}

.form__status.is-error {
  color: var(--red-600);
}

/* CARREIRAS ------------------------------------------------- */
/* ALTERA: layout base de carreiras; carreiras.html ainda tem ajustes extras no <style>. */

.carreiras {
  padding: 140px 0;
  background: rgba(246, 244, 240, .94);
  border-top: 1px solid var(--stone-200);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.carreiras__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.carreiras__info p {
  color: var(--stone-500);
  margin: 0 0 22px;
  font-size: 17px;
  line-height: 1.7;
}

.carreiras__info p.lead {
  color: var(--ink);
  font-weight: 400;
}

.carreiras__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  background: var(--surface-white);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg);
  padding: 48px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--surface-shadow);
}

.carreiras__form .field--half {
  grid-column: span 1;
}

.carreiras__form .form__note--right {
  grid-column: span 2;
  text-align: left;
  margin: 0;
}

.carreiras__actions {
  grid-column: span 2;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 8px;
}

/* Ghost‑dark button variant (for light backgrounds) */
.btn--ghost-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--stone-300);
}

.btn--ghost-dark:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

/* FOOTER ---------------------------------------------------- */
/* ALTERA: rodape compartilhado entre index.html e carreiras.html. */

.footer {
  background: rgba(7, 13, 32, .96);
  color: rgba(255, 255, 255, .7);
  padding: 100px 0 32px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer__brand img {
  height: 80px;
  filter: brightness(0) invert(1);
  margin-bottom: 22px;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.footer__socials a {
  color: rgba(255, 255, 255, .55);
  transition: color .3s var(--ease);
}

.footer__socials a:hover {
  color: var(--white);
}

.footer__brand p {
  max-width: 320px;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .55);
  margin: 0;
}

.footer h5 {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--paper);
  margin: 0 0 22px;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14.5px;
}

.footer ul a {
  transition: color .3s;
}

.footer ul a:hover {
  color: var(--paper);
}

.footer__bar {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, .4);
  letter-spacing: .04em;
}

/* Reveal --------------------------------------------------- */
/* ALTERA: animacao de entrada aplicada pelo js/main.js nos elementos selecionados. */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.reveal[data-delay="1"] {
  transition-delay: .1s;
}

.reveal[data-delay="2"] {
  transition-delay: .2s;
}

.reveal[data-delay="3"] {
  transition-delay: .3s;
}

.reveal[data-delay="4"] {
  transition-delay: .4s;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1200px) {
  /* ALTERA: hero e galeria em notebooks/tablets largos. */
  .hero__content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero__card--main,
  .hero__card--sub {
    aspect-ratio: 16 / 10;
  }

  .hero__card--sub {
    margin-left: 0;
  }

  .hero__gallery {
    grid-template-columns: 1fr 1fr;
    max-width: 900px;
  }

  .hero__gallery::before,
  .hero__gallery::after {
    display: none;
  }
}

@media (max-width: 1080px) {
  /* ALTERA: menu mobile e grades que viram uma coluna em tablets. */
  .nav__links {
    display: none;
    position: fixed;
    inset: 68px 0 0 0;
    background: var(--paper);
    color: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 40px var(--gutter);
    font-size: 22px;
    font-family: var(--f-display);
    letter-spacing: .02em;
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links a {
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid var(--stone-200);
    color: var(--ink);
  }

  body.menu-open {
    overflow: hidden;
  }

  .nav__burger {
    display: flex;
  }

  .sobre__grid,
  .seguranca__grid,
  .contato__grid,
  .carreiras__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .sobre__left {
    position: static;
  }

  .sobre__media {
    min-height: 260px;
  }

  .section-head,
  .regras__head,
  .sobre__right,
  .seguranca__left,
  .contato__info,
  .carreiras__info {
    padding: 32px 24px;
  }

  .seguranca__list {
    padding: 6px 24px;
  }

  .section-head--split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-title {
    font-size: clamp(32px, 7vw, 58px);
    line-height: 1.08;
  }

  .sobre__left .section-title {
    font-size: clamp(40px, 7vw, 58px);
    line-height: 1.08;
  }

  .setores .container {
    grid-template-columns: 1fr;
    grid-template-areas:
      "head"
      "visual"
      "cards";
  }

  .setores .section-head,
  .setores__visual {
    min-height: auto;
  }

  .setores__visual {
    aspect-ratio: 16 / 8;
  }

  .setores__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projetos__intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .projetos-map__layout {
    grid-template-columns: 1fr;
  }

  .projetos-map__details {
    min-height: 0;
    order: 2;
  }

  .projetos-map__canvas {
    min-height: clamp(560px, 82vh, 760px);
    order: 1;
  }

  .projetos-map__image {
    width: min(94%, 660px);
    transform: translate(-50%, -50%);
  }

  .servicos__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ctaband__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  /* ALTERA: experiencia de celular; reduza aqui apenas quando algo quebrar em telas pequenas. */
  :root {
    --gutter: 18px;
  }

  .nav__cta {
    display: none;
  }

  .nav__brand img {
    height: 58px;
  }

  .nav.is-scrolled .nav__brand img {
    height: 48px;
  }

  .hero {
    padding: 130px 0 90px;
  }

  .hero__stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero__scroll {
    display: none;
  }

  .hero__gallery {
    grid-template-columns: 1fr;
  }

  .hero__card--sub {
    margin-left: 0;
  }

  .sobre,
  .servicos,
  .setores,
  .seguranca,
  .projetos,
  .contato,
  .carreiras {
    padding: 90px 0;
  }

  .setores__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 8px;
  }

  .setores .section-head {
    border-radius: 24px;
    padding: 30px 22px;
    gap: 28px;
  }

  .setores__visual {
    aspect-ratio: 4 / 3;
    border-radius: 24px;
  }

  .setor {
    min-height: auto;
    padding: 28px 24px;
    border-radius: 22px;
  }

  .setor h3 {
    max-width: none;
  }

  .projetos__intro {
    gap: 12px;
    margin-bottom: 28px;
  }

  .projetos__subtitle {
    max-width: 260px;
  }

  .projetos-map__canvas {
    min-height: 520px;
    border-radius: 22px;
  }

  .projetos-map__image {
    width: 94%;
    transform: translate(-50%, -50%);
  }

  .projetos-map__details {
    border-radius: 22px;
    padding: 24px 20px;
  }

  .projetos-map__stats strong {
    font-size: 24px;
  }

  .projetos-map__location-list {
    grid-template-columns: 1fr;
  }

  .projetos-map__shape {
    inset: 14px;
    width: calc(100% - 28px);
    height: calc(100% - 28px);
  }

  .sobre__left {
    padding: 28px 22px;
    border-radius: 24px;
    gap: 24px;
  }

  .sobre__media {
    min-height: 220px;
    border-radius: 22px;
  }

  .sobre__media img {
    inset: 0;
    width: 100%;
    height: 100%;
    object-position: center;
  }

  .sobre__pills {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__bar {
    flex-direction: column;
  }

  .contato__form {
    padding: 28px 22px;
    grid-template-columns: 1fr;
  }

  .carreiras__form {
    padding: 28px 22px;
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: clamp(24px, 7.8vw, 40px);
    line-height: 1.1;
  }

  .sobre__left .section-title {
    font-size: clamp(32px, 7.8vw, 40px);
    line-height: 1.1;
  }

  .section-head,
  .regras__head,
  .sobre__right,
  .seguranca__left,
  .contato__info,
  .carreiras__info {
    padding: 28px 22px;
  }

  .seguranca__list {
    padding: 4px 18px;
  }

  .carreiras__form .field--half {
    grid-column: span 1;
  }

  .carreiras__form .form__note--right {
    grid-column: span 1;
  }

  .carreiras__actions {
    grid-column: span 1;
    flex-direction: column;
  }

  .field--half {
    grid-column: span 1;
  }

  .contato__form .btn,
  .form__note,
  .form__status {
    grid-column: span 1;
  }

  .marquee__track {
    font-size: 22px;
    gap: 26px;
  }

  .seguranca__list li {
    grid-template-columns: 60px 1fr;
    gap: 16px;
  }

  .seguranca__list .num {
    font-size: 34px;
  }
}
