/* ==========================================================================
   Willem Loader Animation - MASSA Split Effect
   ========================================================================== */

/* The main container covering the screen */
.secaotopo.massa-header {
  position: relative;
  overflow: hidden;
  background-color: var(--color-teal);
  /* Cor de fundo enquanto carrega */
  color: var(--color-cream);
  min-height: 100dvh;
}

/* Hide until GSAP takes over */
.secaotopo.massa-header.is--hidden {
  display: none;
}

/* The loading layer */
.massa-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 10;
}

/* The splitting flex container */
.massa-split-container {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  position: relative;

  /* Configuração do "Rasgo" */
  --logo-height: clamp(55px, 10vw, 100px);
  /* Reduzido em 1/3 conforme solicitado */
}

/* Metade Esquerda ("MAS") */
.massa-logo-left {
  display: flex;
  justify-content: flex-end;
  /* Align right to touch the split */
}

/* Metade Direita ("SA") */
.massa-logo-right {
  display: flex;
  justify-content: flex-start;
  /* Align left to touch the split */
}

.massa-logo-left img,
.massa-logo-right img {
  height: var(--logo-height);
  width: auto;
  max-width: none;
  display: block;
}

/* O contêiner invisível do meio que vai crescer e empurrar as metades */
.massa-loader__box {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 0;
  /* Começa invisível */
  position: relative;
}

.massa-loader__box-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: clamp(100px, 30vw, 14em);
  /* Para garantir responsividade em telas menores */
  height: var(--logo-height);
  /* Inicia com a altura do logo! */
  position: relative;
}

/* Contêiner das imagens fotográficas */
.massa__growing-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0%;
  /* Cresce animado pelo GSAP */
  height: 100%;
  position: absolute;
  overflow: hidden;
  border-radius: 16px;
  /* Bordas arredondadas iniciais */
}

.massa__growing-image-wrap {
  position: absolute;
  width: 100%;
  min-width: 1em;
  height: 100%;
}

/* As imagens de fundo que alternam */
.massa__cover-image,
.massa__cover-image-extra {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.massa__cover-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  --mask-size: 0px;
  --mouse-x: 50%;
  --mouse-y: 50%;
  clip-path: circle(var(--mask-size) at var(--mouse-x) var(--mouse-y));
  z-index: 5;
  pointer-events: none;
}

.massa__cover-image-extra {
  pointer-events: none;
  user-select: none;
}

.massa__cover-image-extra.is--1 {
  z-index: 4;
}

.massa__cover-image-extra.is--2 {
  z-index: 3;
}

.massa__cover-image-extra.is--3 {
  z-index: 2;
}

.massa__cover-image {
  z-index: 1;
}

/* Imagem final que fica na tela */

/* Elementos de navegação que aparecem depois */
.massa-header__content {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 100dvh;
  padding: 3em;
  position: relative;
  z-index: 20;
  /* Fica acima das imagens */
  pointer-events: none;
  /* Para não bloquear cliques antes de aparecer */
}

.massa-header__content a {
  pointer-events: auto;
  color: var(--color-white);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: 1.125rem;
  font-weight: 500;
}

.massa-header__top {
  width: 100%;
  position: relative;
}

.massa-header__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.massa-nav {
  display: flex;
  position: relative;
  overflow: hidden;
}

.massa-nav__start {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
}

.massa-nav__end {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 50%;
}

.massa-nav__links {
  display: flex;
  gap: 1.5rem;
}

.massa-nav__link {
  position: relative;
}

.massa__letter-white {
  display: block;
  position: relative;
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 0.8;
}

@media screen and (max-width: 991px) {
  .massa-nav__links {
    flex-flow: column;
    gap: 0.5rem;
  }

  .massa__letter-white {
    letter-spacing: -3px;
  }
}

@media screen and (max-width: 767px) {
  .massa-nav__start {
    width: 65%;
  }

  .massa-nav__end {
    width: 35%;
    flex-flow: column;
    gap: 1.5em;
  }

  .massa-header__content {
    padding: 1.5em;
  }
}

/* ==========================================================================
   SEÇÃO EQUIPE E NORMAS (Layout Asimétrico)
   ========================================================================== */
.massa-equipe-section {
  background: #c2bcae;
  overflow: hidden;
  padding: clamp(60px, 8vh, 100px) 0;
}

.massa-equipe-brand-img {
  width: clamp(160px, 16vw, 240px);
  height: auto;
  display: block;
  margin-bottom: 28px;
}


.massa-equipe-left {
  grid-column: 1 / 4;
  display: flex;
  flex-direction: column;
}

.massa-equipe-left-top {
  background-color: var(--color-cream);
  flex: 1;
  display: flex;
  align-items: end;
  justify-content: flex-start;
  padding: 2vh 5vw 8vh clamp(32px, 8.9vw, 184px);
  min-height: 50vh;
}

.massa-equipe-left-top img {
  width: clamp(168px, 16vw, 252px);
  /* Matches footer logo width exactly */
  height: auto;
}

.massa-equipe-left-bottom {
  background-color: #e1dad0;
  flex: 1;
  display: flex;
  align-items: top;
  justify-content: flex-start;
  padding: 2vh 5vw 10vh clamp(32px, 8.9vw, 184px);
  min-height: 50vh;
}

.massa-equipe-text-wrapper {
  max-width: 400px;
}

.massa-equipe-text-wrapper p {
  color: #0c4b5b;
  font-family: var(--font-main);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.massa-equipe-text-wrapper p:last-child {
  margin-bottom: 0;
}

.massa-equipe-right {
  grid-column: 4 / 6;
  background-color: #D3CAB9;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.25) 1px, transparent 1px);
  background-size: calc(100% / 5) 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10vh clamp(32px, 8.9vw, 184px) 10vh 5vw;
}

.massa-equipe-image-wrapper {
  position: relative;
  max-width: 100%;
  /* Reduced from 600px to fit new layout */
  width: 100%;
}

.massa-equipe-pattern {
  position: absolute;
  top: 65%;
  left: 50%;
  width: 45%;
  max-width: 280px;
  z-index: 1;
}

.massa-equipe-img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  position: relative;
  z-index: 2;
  display: block;
}

@media (max-width: 991px) {
  .massa-equipe-section {
    display: flex;
    flex-direction: column;
  }

  .massa-equipe-left {
    width: 100%;
  }

  .massa-equipe-left-top,
  .massa-equipe-left-bottom {
    padding: 6vh 24px;
    min-height: auto;
    justify-content: center;
    text-align: center;
  }

  .massa-equipe-left-top img {
    margin: 0 auto;
  }

  .massa-equipe-text-wrapper {
    max-width: 540px;
    margin: 0 auto;
  }

  .massa-equipe-right {
    width: 100%;
    min-height: auto;
    padding: 6vh 24px;
  }

  .massa-equipe-image-wrapper {
    max-width: 480px;
    margin: 0 auto;
  }

  .massa-equipe-pattern {
    top: -5%;
    left: -5%;
    width: 35%;
  }
}

/* ==========================================================================
   SEÇÃO MISSÃO, VISÃO E VALORES (Redesenhada com Topo e Parte de Baixo)
   ========================================================================== */
.massa-mvv-section {
  position: relative;
  width: 100%;
  z-index: 5;
  overflow: hidden;
}

/* 1. PARTE DO TOPO: MISSÃO E VISÃO */
.mvv-top-part {
  background-color: #dd6f38;
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: var(--footer-side) minmax(210px, 1.28fr) minmax(260px, 1.28fr) minmax(0, 2.58fr) var(--footer-side);
  padding: 14vh 0;
  box-sizing: border-box;
}

.mvv-top-mission {
  grid-column: 2 / 4;
  padding-right: 6vw;
  position: relative;
  z-index: 2;
}

.mvv-top-vision {
  grid-column: 4 / 5;
  padding-left: clamp(24px, 4vw, 64px);
  padding-right: 4vw;
  position: relative;
  z-index: 2;
}

.mvv-label-top {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  font-weight: 700;
  color: #0c4b5b;
  text-transform: none;
  margin: 0 0 1.4rem 0;
  display: block;
  letter-spacing: -0.01em;
}

.mvv-title-top {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  font-weight: 400;
  color: #0c4b5b;
  margin: 0 0 1.4rem 0;
  line-height: 1.2;
  text-transform: none;
}

.mvv-text-top {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  font-weight: 350;
  color: rgba(12, 75, 91, 0.85);
  line-height: 1.6;
  max-width: 480px;
  margin: 0;
}

/* 2. PARTE DE BAIXO: VALORES E IMAGEM MASQUERADE */
.mvv-bottom-part {
  background-color: #be4d00;
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: var(--footer-side) minmax(210px, 1.28fr) minmax(260px, 1.28fr) minmax(0, 2.58fr) var(--footer-side);
  padding: 14vh 0;
  box-sizing: border-box;
}

.mvv-bottom-values {
  grid-column: 2 / 4;
  padding-right: 5vw;
  position: relative;
  z-index: 2;
}

.mvv-values-content {
  display: flex;
  flex-direction: column;
}

.mvv-label-bottom {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  font-weight: 700;
  color: #e1dad0;
  text-transform: none;
  margin: 0 0 1.4rem 0;
  display: block;
  letter-spacing: -0.01em;
}

.mvv-title-bottom {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  font-weight: 400;
  color: #e1dad0;
  margin: 0 0 1.4rem 0;
  line-height: 1.2;
  text-transform: none;
}

.mvv-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 540px;
}

.mvv-values-button {
  background-color: #dd6f38;
  color: #e1dad0;
  padding: 14px 20px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  font-weight: 500;
  text-align: left;
  border: none;
  cursor: default;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.mvv-values-button:hover {
  background-color: #e1dad0;
  color: #be4d00;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* 3. PARALLAX MASQUERADE (Cobogó) */
.mvv-bottom-parallax {
  grid-column: 4 / 5;
  padding-left: clamp(24px, 4vw, 64px);
  padding-right: 4vw;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mvv-parallax-mask-container {
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  -webkit-mask-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyBpZD0iQ2FtYWRhXzIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB2aWV3Qm94PSIwIDAgNDUuNiA0Ni44Ij4KICA8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMzAuNS4xLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogMi4xLjQgQnVpbGQgMykgIC0tPgogIDxkZWZzPgogICAgPHN0eWxlPgogICAgICAuc3QwIHsKICAgICAgICBmaWxsOiAjZGQ2ZjM4OwogICAgICB9CiAgICA8L3N0eWxlPgogIDwvZGVmcz4KICA8cGF0aCBjbGFzcz0ic3QwIiBkPSJNMCwwdjQ2LjhoNDUuNlYwSDBaTTI0LjksMS45YzcuNCw0LDYuNCwxMi4xLDYuMywxOS44LTUuNy0zLjEtNi4yLTcuNy02LjMtMTYuMVYxLjlaTTIuMSw0NS4xdi0zLjdjMC04LjQuNi0xMyw2LjMtMTYuMSwwLDcuNywxLjEsMTUuOC02LjMsMTkuOFpNOC44LDIxLjZjLTMuOS0xLjgtNi4zLTUuMi02LjctMTAuNlYxLjloNi43djE5LjdaTTIwLjksNDUuMWgtNi43di0xOS43YzMuOSwxLjgsNi4zLDUuMiw2LjcsMTAuNnY5LjFaTTIwLjksNS42YzAsOC40LS42LDEzLjEtNi4zLDE2LjEsMC03LjctMS4xLTE1LjgsNi4zLTE5Ljh2My43Wk0zMS42LDQ1LjFoLTYuN3YtOS4xYy40LTUuNCwyLjgtOC44LDYuNy0xMC42djE5LjdaTTQzLjYsNDUuMWMtNy40LTQtNi40LTEyLjEtNi4zLTE5LjgsNS43LDMuMSw2LjIsNy43LDYuMywxNi4xdjMuN1pNNDMuNiwxMWMtLjQsNS40LTIuOCw4LjgtNi43LDEwLjZWMS45aDYuN3Y5LjFaIi8+Cjwvc3ZnPg==");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyBpZD0iQ2FtYWRhXzIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB2aWV3Qm94PSIwIDAgNDUuNiA0Ni44Ij4KICA8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMzAuNS4xLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogMi4xLjQgQnVpbGQgMykgIC0tPgogIDxkZWZzPgogICAgPHN0eWxlPgogICAgICAuc3QwIHsKICAgICAgICBmaWxsOiAjZGQ2ZjM4OwogICAgICB9CiAgICA8L3N0eWxlPgogIDwvZGVmcz4KICA8cGF0aCBjbGFzcz0ic3QwIiBkPSJNMCwwdjQ2LjhoNDUuNlYwSDBaTTI0LjksMS45YzcuNCw0LDYuNCwxMi4xLDYuMywxOS44LTUuNy0zLjEtNi4yLTcuNy02LjMtMTYuMVYxLjlaTTIuMSw0NS4xdi0zLjdjMC04LjQuNi0xMyw2LjMtMTYuMSwwLDcuNywxLjEsMTUuOC02LjMsMTkuOFpNOC44LDIxLjZjLTMuOS0xLjgtNi4zLTUuMi02LjctMTAuNlYxLjloNi43djE5LjdaTTIwLjksNDUuMWgtNi43di0xOS43YzMuOSwxLjgsNi4zLDUuMiw2LjcsMTAuNnY5LjFaTTIwLjksNS42YzAsOC40LS42LDEzLjEtNi4zLDE2LjEsMC03LjctMS4xLTE1LjgsNi4zLTE5Ljh2My43Wk0zMS42LDQ1LjFoLTYuN3YtOS4xYy40LTUuNCwyLjgtOC44LDYuNy0xMC42djE5LjdaTTQzLjYsNDUuMWMtNy40LTQtNi40LTEyLjEtNi4zLTE5LjgsNS43LDMuMSw2LjIsNy43LDYuMywxNi4xdjMuN1pNNDMuNiwxMWMtLjQsNS40LTIuOCw4LjgtNi43LDEwLjZWMS45aDYuN3Y5LjFaIi8+Cjwvc3ZnPg==");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.mvv-parallax-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../../assets/images/img/hero_sobre/DSC07861.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Curved Marquee Text Banner */
.mvv-marquee-part {
  background-color: #be4d00;
  padding: 6vh 0 10vh 0;
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(243, 238, 232, 0.15);
  border-bottom: 1px solid rgba(243, 238, 232, 0.15);
  user-select: none;
  z-index: 4;
}

.curved-loop-container {
  width: 100%;
  max-width: 100vw;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.curved-loop-svg {
  width: 100%;
  aspect-ratio: 1440 / 250;
  overflow: visible;
  display: block;
  font-size: 6.5rem;
  fill: #0c4b5b;
  font-family: 'Hubot Sans', sans-serif;
  text-transform: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  font-variation-settings: "wdth" 125, "wght" 900;
  letter-spacing: -0.04em;
}

/* 4. LINHAS DE GRADE VERTICAIS (Bordas) */
.mvv-grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: grid;
  grid-template-columns: var(--footer-side) minmax(210px, 1.28fr) minmax(260px, 1.28fr) minmax(0, 2.58fr) var(--footer-side);
  z-index: 1;
}

.mvv-grid-line-col.col-2,
.mvv-grid-line-col.col-3,
.mvv-grid-line-col.col-4,
.mvv-grid-line-col.col-5 {
  border-left: 1px solid rgba(243, 238, 232, 0.15);
}

/* 5. RESPONSIVIDADE (Telas menores que 991px) */
@media (max-width: 991px) {

  .mvv-top-part,
  .mvv-bottom-part {
    display: flex;
    flex-direction: column;
    padding: 8vh clamp(24px, 5vw, 48px);
    gap: 3.5rem;
  }

  .mvv-grid-lines {
    display: none;
  }

  .mvv-top-mission,
  .mvv-top-vision,
  .mvv-bottom-values,
  .mvv-bottom-parallax {
    width: 100%;
    padding: 0;
  }

  .mvv-bottom-parallax {
    max-width: 480px;
    margin: 0 auto;
  }

  .mvv-parallax-mask-container {
    aspect-ratio: 1 / 1;
    width: 100%;
  }

  .mvv-parallax-image {
    background-attachment: scroll;
    background-size: 180%;
    background-position: center;
    background-repeat: no-repeat;
  }
}

@media (max-width: 480px) {
  .mvv-values-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ==========================================================================
   SEÇÃO PRESENÇA NACIONAL
   ========================================================================== */
.massa-presence-section {
  background-color: #c2bcae;
  position: relative;
  width: 100%;
  z-index: 5;
  overflow: hidden;
  display: grid;
  grid-template-columns: var(--footer-side) minmax(210px, 1.28fr) minmax(260px, 1.28fr) minmax(0, 2.58fr) var(--footer-side);
  padding: 7vh 0;
  box-sizing: border-box;
}

.presence-grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: grid;
  grid-template-columns: var(--footer-side) minmax(210px, 1.28fr) minmax(260px, 1.28fr) minmax(0, 2.58fr) var(--footer-side);
  z-index: 1;
}

.presence-grid-line-col.col-2,
.presence-grid-line-col.col-3,
.presence-grid-line-col.col-4,
.presence-grid-line-col.col-5 {
  border-left: 1px solid rgba(243, 238, 232, 0.25);
}

.presence-title-wrapper {
  grid-column: 2 / 4;
  grid-row: 1;
  align-self: end;
  position: relative;
  z-index: 2;
}

.presence-section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  font-weight: 400;
  color: #0c4b5b;
  text-transform: none;
  margin: 0;
  letter-spacing: -0.01em;
}

.presence-orange-divider {
  grid-column: 2 / 5;
  grid-row: 2;
  border-bottom: 1px solid #be4d00;
  margin-top: 1.5rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.presence-map-column {
  grid-column: 2 / 4;
  grid-row: 3;
  padding-right: 6vw;
  position: relative;
  z-index: 2;
}

.presence-map-container {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.massa-presence-section .mapa-svg-wrapper {
  max-width: 620px;
  width: 100%;
}

/* Override mapa.css hover effect on states for this section */
.massa-presence-section .mapa-svg svg path.cls-2 {
  cursor: default;
  transition: none;
}

.massa-presence-section .mapa-svg svg path.cls-2:hover {
  filter: none;
}



.presence-metric-column {
  grid-column: 4 / 5;
  grid-row: 3;
  padding-left: clamp(24px, 4vw, 64px);
  padding-right: 4vw;
  position: relative;
  z-index: 2;
  align-self: center;
}

/* MAIS DE below the line */
.presence-metric-label {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.8rem);
  font-weight: 400;
  color: #0c4b5b;
  margin: 0 0 1rem 0;
  letter-spacing: 0.05em;
  display: block;
}

.presence-metric-svg-wrapper {
  width: 100%;
  margin-bottom: 2rem;
}

.presence-metric-img {
  width: 100%;
  height: auto;
  max-height: 120px;
  object-fit: contain;
  display: block;
}

.presence-metric-sublabel {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.8rem);
  font-weight: 400;
  color: #0c4b5b;
  text-transform: none;
  margin-bottom: 2.5rem;
  display: block;
  letter-spacing: 0.05em;
}

.presence-text-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.presence-text-block p {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  font-weight: 350;
  color: rgba(12, 75, 91, 0.85);
  line-height: 1.6;
  max-width: 480px;
  margin: 0;
}

/* Responsividade */
@media (max-width: 991px) {
  .massa-presence-section {
    display: flex;
    flex-direction: column;
    padding: 8vh clamp(24px, 5vw, 48px);
    gap: 2rem;
  }

  .presence-grid-lines {
    display: none;
  }

  .presence-title-wrapper,
  .presence-metric-column {
    width: 100%;
    padding: 0;
  }

  .presence-map-column {
    width: 100%;
    padding: 0;
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
  }

  .presence-map-container {
    align-items: center;
    width: 100%;
  }

  .presence-metric-column {
    align-self: flex-start;
  }

  .presence-orange-divider {
    width: 100%;
    margin: 1rem 0;
  }

  .presence-metric-svg-wrapper {
    max-width: 350px;
  }

}

/* ==========================================================================
   SEÇÃO SETORES
   ========================================================================== */
.massa-sectors-section {
  background-color: #e1dad0;
  position: relative;
  width: 100%;
  z-index: 5;
  overflow: hidden;
  display: grid;
  grid-template-columns: var(--footer-side) minmax(210px, 1.28fr) minmax(260px, 1.28fr) minmax(0, 2.58fr) var(--footer-side);
  padding: 8vh 0;
  box-sizing: border-box;
  border-top: 1px solid rgba(12, 75, 91, 0.1);
}

.sectors-grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: grid;
  grid-template-columns: var(--footer-side) minmax(210px, 1.28fr) minmax(260px, 1.28fr) minmax(0, 2.58fr) var(--footer-side);
  z-index: 1;
}

.sectors-grid-line-col.col-2,
.sectors-grid-line-col.col-3,
.sectors-grid-line-col.col-4,
.sectors-grid-line-col.col-5 {
  border-left: 1px solid rgba(12, 75, 91, 0.08);
}

.sectors-title-wrapper {
  grid-column: 2 / 4;
  grid-row: 1;
  align-self: end;
  position: relative;
  z-index: 2;
  padding-bottom: 1rem;
}

.sectors-section-subtitle {
  font-family: var(--font-technical);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: none;
  color: #be4d00;
  margin: 0 0 0.5rem 0;
  letter-spacing: 0.1em;
}

.sectors-section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  font-weight: 400;
  color: #0c4b5b;
  text-transform: none;
  margin: 0;
  letter-spacing: -0.01em;
}

.sectors-orange-divider {
  grid-column: 2 / 5;
  grid-row: 2;
  border-bottom: 1px solid #be4d00;
  margin-top: 1rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.sectors-content-grid {
  grid-column: 2 / 5;
  grid-row: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

.sector-card {
  background: #ffffff;
  border: 1px solid rgba(12, 75, 91, 0.12);
  border-radius: 12px;
  padding: 3rem 2rem;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.sector-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(12, 75, 91, 0.08);
  border-color: #be4d00;
}

.sector-icon-wrapper {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  background: rgba(12, 75, 91, 0.06);
  color: #0c4b5b;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
  transition: all 0.3s ease;
}

.sector-icon-wrapper svg {
  width: 28px;
  height: 28px;
}

.sector-card:hover .sector-icon-wrapper {
  background: #be4d00;
  color: #ffffff;
}

.sector-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: #0c4b5b;
  margin: 0 0 1rem 0;
}

.sector-card-text {
  font-family: var(--font-main);
  font-size: 1rem;
  line-height: 1.6;
  color: #555555;
  margin: 0;
}

@media (max-width: 1024px) {

  .massa-sectors-section,
  .sectors-grid-lines {
    grid-template-columns: var(--footer-side-tablet, 40px) 1fr 1fr 1fr var(--footer-side-tablet, 40px);
  }

  .sectors-content-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {

  .massa-sectors-section,
  .sectors-grid-lines {
    grid-template-columns: 20px 1fr 20px;
  }

  .sectors-title-wrapper {
    grid-column: 2;
  }

  .sectors-orange-divider {
    grid-column: 2;
    margin-bottom: 2rem;
  }

  .sectors-content-grid {
    grid-column: 2;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .sector-card {
    padding: 2rem 1.5rem;
  }
}