/* =============================================================
 MAINGOAL main.css
 ============================================================= */

/* Reset & Base */

body.admin-bar .site-header{
    margin-top: 32px !important;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-primary);
  font-size: var(--size-text);
  color: var(--color-black);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Container */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* Typography helpers */
.pre-title {
  font-size: var(--size-pre-title);
  font-weight: 500 !important;
  letter-spacing: 0em;
  text-transform: uppercase;
  color: var(--color-red) !important;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: var(--size-title-lg);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-black);
}

.section-title--white { color: var(--color-white); }
.section-title--red   { color: var(--color-red); }

.section-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  max-width: 50ch;
}

.section-text--white { color: rgba(255,255,255,.8); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0px;
  text-transform: uppercase;
  padding: 13px 50px 13px 20px;
  border-radius: 100px;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
}

/* Seta circular */
.btn__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition);
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 7h12M8 2l5 5-5 5' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
  position: absolute;
  right: -1px;
}

.btn:hover .btn__arrow {/* transform: translateX(3px); */}

/* Primary fundo vermelho + crculo preto */
.btn--primary {
  background: var(--color-black);
  color: var(--color-white);
  border: 0px solid var(--color-black);
  padding: 13px 50px 13px 20px;
}
.btn--primary .btn__arrow { background-color: var(--color-red); }
.btn--primary:hover {background: var(--color-red);}

/* White fundo branco + crculo vermelho */
.btn--white {
  background: var(--color-white);
  color: var(--color-black);
  border: 0px solid var(--color-white);
  padding: 13px 50px 13px 20px;
}
.btn--white .btn__arrow { background-color: var(--color-red);   transition: transform 0.3s ease; }
.btn--white:hover {background: var(--color-red); color: var(--color-white);}
.btn--white:hover .btn__arrow{
	  transform: rotate(-45deg);

	
} 
/* Variant pequena */
.btn--sm {font-size: 0.7rem;padding: 8px 40px 8px 16px !important;gap: 0.6rem;}
.btn--sm .btn__arrow {width: 30px;height: 30px;background-size: 11px;}

/* Dark fundo preto, crculo branco */
.btn--dark {
  background: var(--color-black);
  color: var(--color-white);
  border: 0px solid var(--color-black);
  padding: 13px 50px 13px 20px;
   transition: background 0.3s ease, color 0.3s ease;
}


.btn--dark .btn__arrow {
	transition: transform 0.3s ease;
  background-color: var(--color-white);
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2714%27%20height%3D%2714%27%20viewBox%3D%270%200%2014%2014%27%20fill%3D%27none%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M1%207h12M8%202l5%205-5%205%27%20stroke%3D%27%23000000%27%20stroke-width%3D%271.8%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27/%3E%3C/svg%3E");
}

.btn.btn--dark:hover .btn__arrow {
  transform: rotate(-45deg);
}

.btn--dark:hover { background: #fff !important; color: #000 !important; }

/* Dark 2 fundo preto, crculo vermelho */
.btn--dark-2 {
  background: var(--color-black);
  color: var(--color-white);
  border: 0px solid var(--color-black);
  padding: 13px 50px 13px 20px;
}
.btn--dark-2 .btn__arrow {
	  transition: transform 0.3s ease;
  background-color: var(--color-red);
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2714%27%20height%3D%2714%27%20viewBox%3D%270%200%2014%2014%27%20fill%3D%27none%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M1%207h12M8%202l5%205-5%205%27%20stroke%3D%27%23FFFFFF%27%20stroke-width%3D%271.8%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27/%3E%3C/svg%3E");
}

.btn--dark-2:hover { background: var(--color-red); color: var(--color-white); }

.btn--dark-2:hover .btn__arrow{
	  transform: rotate(-45deg);
} 
/* Red fundo vermelho, texto branco, bola preta com seta branca.
 Hover: fundo todo preto. */
.btn--red {
  background: var(--color-red);
  color: var(--color-white);
  border: 0px solid var(--color-red);
  padding: 13px 50px 13px 20px;
}
.btn--red .btn__arrow {
		transition: transform 0.3s ease;
  background-color: var(--color-black);
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2714%27%20height%3D%2714%27%20viewBox%3D%270%200%2014%2014%27%20fill%3D%27none%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M1%207h12M8%202l5%205-5%205%27%20stroke%3D%27%23FFFFFF%27%20stroke-width%3D%271.8%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27/%3E%3C/svg%3E");
}
.btn--red:hover {
  background: var(--color-black);
  color: var(--color-white);
}

.btn--red:hover .btn__arrow {
  transform: rotate(-45deg);
}

.btn--primary:hover .btn__arrow {
  transform: rotate(-45deg);
}

/* Variante de seta para a esquerda (usada no boto "anterior") */
.btn--arrow-left {
  padding: 13px 20px 13px 50px;
  flex-direction: row-reverse;
}
.btn--arrow-left .btn__arrow {
  left: -1px;
  right: auto;
  transform: scaleX(-1);
}

/* Variant grande (CTA Fale Connosco) */
.btn--lg {
  font-size: 0.82rem;
  padding: 13px 50px 13px 20px;
  gap: 0.9rem;
}
.btn--lg .btn__arrow {width: 42px;height: 42px;background-size: 16px;}

/* Outline white usado em fundos escuros */
.btn--outline {
  background: var(--color-white);
  color: var(--color-black);
  border: 0px solid rgba(255,255,255,.85);
  padding: 13px 50px 13px 20px;
}
.btn--outline .btn__arrow {
  background-color: var(--color-red);
  transition: transform 0.3s ease;
}

.btn--outline:hover .btn__arrow{
	  transform: rotate(-45deg);

}
.btn--outline:hover {color: var(--color-white);background: var(--color-red);}

/* WPBakery overrides */
.mg-vc-no-pad { padding: 0 !important; }
.vc_row.mg-vc-no-pad .vc_column-inner { padding: 0 !important; }

/* ===================================================================
   INTRO / PRELOAD
   - Fundo preto
   - Padrao de bolas (bolas-preload.svg) pulsando em escala + opacidade
   - Logo central (pulse.svg) tambem com escala + opacidade
   =================================================================== */
body.mg-intro-active {
  overflow: hidden;
}

#mg-intro.back1 {
  position: fixed;
  inset: 0;
  z-index: 999999999;
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#mg-intro.back1.is-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}


#mg-intro.back1::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/wp-content/uploads/2026/05/fundo-dots-2-2-scaled.png') center / cover no-repeat;
  transform-origin: center;
  animation: bgPulse 6.4s ease-in-out forwards;
}

.loader-wrap {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  z-index: 0;
  filter: blur(40px);
  background: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.95) 55%,
    rgba(0, 0, 0, 0.8) 70%,
    rgba(0, 0, 0, 0) 100%
  );
}

.loader-inner {
  position: relative;
  z-index: 1;
  width: 205px;
  height: 205px;
  border-radius: 50%;
  background: #EF241D;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 18px rgba(239,36,29,0.25);
  animation: corePulse 1.6s ease-in-out 4 forwards;
}

.loader-inner::before,
.loader-inner::after {
  content: '';
  position: absolute;
  inset: -42px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(1px);
  transform: scale(0.82);
  opacity: 0;
}

.loader-inner::before {
  background: #E3261C26;
  animation: waveNear 1.45s ease-out 4 forwards;
}

.loader-inner::after {
  background: #E3261C0D;
  animation: waveFar 1.45s ease-out 4 forwards;
}

.loader-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 95px;
  transform: translate(-50%, -50%);
  z-index: 5;
}


@keyframes corePulse {
  0% {
    transform: scale(0.98);
    box-shadow: 0 0 18px rgba(239,36,29,0.25);
  }

  50% {
    transform: scale(1.02);
    box-shadow: 0 0 35px rgba(239,36,29,0.45);
  }

  100% {
    transform: scale(0.98);
    box-shadow: 0 0 18px rgba(239,36,29,0.25);
  }
}

@keyframes waveNear {
  0% {
    transform: scale(0.82);
    opacity: 1;
  }

  45% {
    transform: scale(1.18);
    opacity: 0.8;
  }

  65% {
    transform: scale(1.32);
    opacity: 0;
  }

  100% {
    transform: scale(1.32);
    opacity: 0;
  }
}

@keyframes waveFar {
  0% {
    transform: scale(1.15);
    opacity: 0;
  }

  45% {
    transform: scale(1.25);
    opacity: 0;
  }

  65% {
    transform: scale(1.38);
    opacity: 0.75;
  }

  100% {
    transform: scale(1.65);
    opacity: 0;
  }
}

@keyframes bgPulse {
  0% {
    transform: scale(1);
    opacity: 0.35;
  }

  25% {
    transform: scale(1.08);
    opacity: 0.55;
  }

  50% {
    transform: scale(1);
    opacity: 0.35;
  }

  75% {
    transform: scale(1.08);
    opacity: 0.55;
  }

  100% {
    transform: scale(1);
    opacity: 0.35;
  }
}

/* ===================================================================
 HEADER split layout (menu esquerdo | logo central | menu direito)
 Design base: 1920px
 Estados: default (fundo branco) | scroll | transparent
 =================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

/* Container interno do header at 1920px */
.site-header .container {
  max-width: 1920px;
}

/* Estado DEFAULT: fundo branco (pginas internas) */
body:not(.has-transparent-header) .site-header {
  background: var(--color-white);
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
}

/* Estado SCROLL: sempre fundo branco + sombra + compacto */
.site-header.is-scrolled {
  background: var(--color-white);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  padding: 1.65rem 0;
}

/* Estado TRANSPARENT: s quando o body pede e ainda no houve scroll */
.has-transparent-header .site-header:not(.is-scrolled) {
  background: transparent;
  box-shadow: none;
}

/* Grid 3 colunas: esquerda | logo | direita */
.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

/* -------- LOGO central (3 variantes, toggled por estado) -------- */
.site-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  justify-self: center;
}

.site-logo__img {
  display: block;
    height: auto;
    width: auto;
    max-width: 230px;
  transition: height var(--transition), opacity var(--transition);
}

/* Por omisso, s o logo "default" visvel */
.site-logo__img--scroll,
.site-logo__img--transparent {
  display: none;
}

/* Estado SCROLL: mostra logo de scroll, esconde os outros */
.site-header.is-scrolled .site-logo__img--default,
.site-header.is-scrolled .site-logo__img--transparent {
  display: none;
}
.site-header.is-scrolled .site-logo__img--scroll {
  display: block;
  height: auto;
}

/* Estado TRANSPARENT: mostra logo transparente */
.has-transparent-header .site-header:not(.is-scrolled) .site-logo__img--default,
.has-transparent-header .site-header:not(.is-scrolled) .site-logo__img--scroll {
  display: none;
}
.has-transparent-header .site-header:not(.is-scrolled) .site-logo__img--transparent {
  display: block;
}

/* -------- NAVEGAO (left & right) -------- */
.site-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  align-content: flex-end;
}
.site-nav--left  {justify-self: start;justify-content: flex-end;}
.site-nav--right { justify-self: end;    justify-content: flex-end; }

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__item { list-style: none; }

.site-nav__item a {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-black);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition);
}

.site-nav__item a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-red);
  transition: width var(--transition);
}

.site-nav__item a:hover,
.site-nav__item.current-menu-item a { color: var(--color-red); }
.site-nav__item a:hover::after { width: 100%; }

/* Links brancos no estado transparente (default) */
.has-transparent-header .site-header:not(.is-scrolled) .site-nav__item a { color: var(--color-white); }
.has-transparent-header .site-header:not(.is-scrolled) .site-nav__item a:hover { color: rgba(255,255,255,.85); }

/* Override por slide (apenas header transparente, menu direito) */
body.is-right-menu-black.has-transparent-header .site-header:not(.is-scrolled) .site-nav--right .site-nav__item a {
  color: var(--color-black);
}
body.is-right-menu-black.has-transparent-header .site-header:not(.is-scrolled) .site-nav--right .site-nav__item a:hover {
  color: var(--color-red);
}
body.is-right-menu-white.has-transparent-header .site-header:not(.is-scrolled) .site-nav--right .site-nav__item a {
  color: var(--color-white);
}
body.is-right-menu-white.has-transparent-header .site-header:not(.is-scrolled) .site-nav--right .site-nav__item a:hover {
  color: rgba(255,255,255,.85);
}

/* TransiÃ§Ã£o suave ao mudar de slide */
.site-nav--right .site-nav__item a,
.site-header__search-toggle {
  transition: color var(--transition), background var(--transition);
}

/* -------- BOTO SEARCH (no menu direito) -------- */
.site-header__search-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-left: 0.5rem;
  padding: 0;
  background: transparent;
  border: none;
  color: var(--color-black);
  cursor: pointer;
  border-radius: 50%;
  transition: background var(--transition), color var(--transition);
  align-items: center;
}
.site-header__search-toggle:hover {
  background: rgba(0,0,0,.06);
  color: var(--color-red);
}
.has-transparent-header .site-header:not(.is-scrolled) .site-header__search-toggle {
  color: var(--color-white);
}
.has-transparent-header .site-header:not(.is-scrolled) .site-header__search-toggle:hover {
  background: rgba(255,255,255,.12);
}

/* Search toggle override por slide no header transparente */
body.is-right-menu-black.has-transparent-header .site-header:not(.is-scrolled) .site-header__search-toggle {
  color: var(--color-black);
}
body.is-right-menu-black.has-transparent-header .site-header:not(.is-scrolled) .site-header__search-toggle:hover {
  background: rgba(0,0,0,.06);
  color: var(--color-red);
}
body.is-right-menu-white.has-transparent-header .site-header:not(.is-scrolled) .site-header__search-toggle {
  color: var(--color-white);
}

/* Search drawer */
.site-search {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--color-white);
  border-top: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
  padding: 1.25rem 0;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}
.site-search.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.site-search__form {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.site-search__input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-primary);
  font-size: 1.1rem;
  padding: 0.5rem 0;
  background: transparent;
  color: var(--color-black);
  border-bottom: 1px solid rgba(0,0,0,.15);
}
.site-search__input:focus { border-bottom-color: var(--color-red); }
.site-search__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--color-red);
  color: var(--color-white);
  cursor: pointer;
  transition: background var(--transition);
}
.site-search__submit:hover { background: var(--color-black); }



/* -------- Toggle mobile (hambrguer) -------- */
.site-header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  justify-self: end;
}

.site-header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-red);
  border-radius: 2px;
  transition: var(--transition);
}

.has-transparent-header .site-header:not(.is-scrolled) .site-header__toggle span {background: var(--color-red);}

/* -------- Responsive -------- */
@media (max-width: 1024px) {
  .site-header__inner {
    grid-template-columns: auto 1fr auto;
    display: flex;
    justify-content: space-between;
  }
  .site-header__toggle { display: flex; }
  .site-nav--left,
  .site-nav--right {
    display: none;
  }
  .site-logo { justify-self: center; }
  .site-logo__img {height: auto;max-width: 52vw;}
  .has-transparent-header .site-header:not(.is-scrolled){
    background-color: var(--color-white);
	  box-shadow:0 1px 0 rgba(0, 0, 0, .06);
  }
}

/* Mobile nav (drawer lateral) */
.site-mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(340px, 85vw);
  height: 100dvh;
  background: var(--color-red);
  padding: 5rem 2.5rem 2.5rem;
  transform: translateX(100%);
  transition: transform var(--transition);
  box-shadow: -8px 0 40px rgba(0,0,0,.15);
  z-index: 1001;
  overflow-y: auto;
}
.site-mobile-nav.is-open { transform: translateX(0); }
.site-mobile-nav__close {
  position: absolute;
  top: max(1rem, env(safe-area-inset-top));
  right: max(1rem, env(safe-area-inset-right));
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,.16);
  display: none;
  align-items: center;
  justify-content: center;
}
.site-mobile-nav.is-open .site-mobile-nav__close {
  display: inline-flex;
}
.site-mobile-nav__close span {
  position: absolute;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-white);
}
.site-mobile-nav__close span:first-child {
  transform: rotate(45deg);
}
.site-mobile-nav__close span:last-child {
  transform: rotate(-45deg);
}
.site-mobile-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.site-mobile-nav__list a {
  display: block;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
  text-decoration: none;
  transition: color var(--transition);
}
.site-mobile-nav__list a:hover { color: var(--color-red); }

/* Overlay mobile */
.site-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1000;
}
.site-nav-overlay.is-visible { display: block; }

/* ===================================================================
 HERO SLIDESHOW 3 chevrons SVG empilhados, design base 1920px
 =================================================================== */
.hero {
  --hero-shape-overlap: clamp(42px, 6vw, 110px);
  position: relative;
  width: 100%;
  min-height: min(100svh, 900px);    
  height: clamp(720px, 120svh, 1080px);
  background: var(--color-white);
  overflow: visible;
  isolation: isolate;
  padding-top: 120px; /* espao para o header fixo */
  z-index: 1;
}

/* Chevrons empilhados (lado esquerdo) */
.hero__chevrons {
  position: absolute;
  top: 0;
  left: 0;
  width: min(68vw, 1100px);          /* os SVGs sangram para fora do container */
  max-width: 1100px;
  height: calc(100% + var(--hero-shape-overlap));
  z-index: 1;
  overflow: visible;
  pointer-events: none; /* o container no intercepta, s os botes */
}

.hero__chevron {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + var(--hero-shape-overlap));
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  pointer-events: auto;
  transition: transform var(--transition), filter var(--transition);
  overflow: visible;
}

.hero__chevron-svg {
  display: block;
  position: absolute;
  width: var(--hero-chevron-width, clamp(520px, 55vw, 900px));
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: left top;
  transition: opacity var(--transition);
}

/* Ordem visual (de trs para a frente): 3 2 1 */
.hero__chevron--3 {z-index: 1;left: 155px;top: -9px;}
.hero__chevron--2 {z-index: 2;left: 90px;top: -5px;}
.hero__chevron--1 { z-index: 3; top:-5px; }

.hero__chevron--3 .hero__chevron-svg {
    --hero-chevron-width: clamp(500px, 56vw, 900px);
    top: -9px;
    left: clamp(-140px, -8vw, -58px);
}

.hero__chevron--2 .hero__chevron-svg {
    --hero-chevron-width: clamp(520px, 57vw, 913px);
    top: clamp(-40px, -3vw, -18px);
    left: clamp(-160px, -7vw, -70px);
}

.hero__chevron--1 .hero__chevron-svg {
    --hero-chevron-width: clamp(540px, 58vw, 960px);
    top: clamp(-110px, -7vw, -48px);
    left: clamp(-180px, -8vw, -82px);
}

.hero__chevron:hover{
	/* opacity: .6; */
}

/* Estado hover reala o chevron sobre o qual se est a passar */
.hero__chevron:hover { filter: brightness(1.05); }
.hero__chevron:hover .hero__chevron-svg { opacity: 1; }

/* Estado disabled (menos slides do que chevrons) */
.hero__chevron.is-empty {
  pointer-events: none;
  cursor: default;
}

/* Focus visible (acessibilidade) */
.hero__chevron:focus-visible {
  outline: 2px dashed var(--color-white);
  outline-offset: -14px;
}

/* Linha vertical direita */
.hero__vline {
  position: absolute;
  top: 0;
  right: clamp(2rem, 5vw, 6rem);
  width: 1px;
  height: 100%;
  background: rgba(227, 38, 28, 0.35);
  z-index: 2;
  display: none
}
.hero__vline-dot {
  position: absolute;
  top: 30%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: var(--color-red);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* Ilustrao / imagem do slide (lado direito) */
.hero__illustration {
position: absolute;
    top: 0%;
    right: 0;
    transform: 0;
    width: 100%;
    max-width: 100%;
    max-height: 90vh;
    height: 100%;
    z-index: 0;
    padding-right: clamp(4rem, 8vw, 9rem);
    pointer-events: none;
}

.hero__illustration-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(20px) scale(0.98);
  transition: opacity 0.7s ease, transform 0.7s ease;
	height:100vh;
}

.hero__illustration-item.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.hero__illustration-img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: right center;
}

/* Contedo (texto do slide, sobre os chevrons) */
.hero__content {
  position: relative;
  z-index: 4;
  height: 100%;
  display: flex;
  align-items: center;
    pointer-events: none;
}

.hero__content .container {
  max-width: 1920px;
  width: 100%;
  padding-inline: clamp(2rem, 5vw, 7rem);
  position: relative;
}

.hero__slide {
  position: absolute;
  top: 50%;
  left: 0;
  padding-inline: clamp(2rem, 5vw, 7rem);
  max-width: 670px;
  transform: translateY(-80%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
}
.hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.hero__subtitle {
  font-size: var(--size-pre-title);
  font-weight: 500 !important;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-white);
  margin: 0 0 1rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.hero__title {
  font-size: var(--size-hero);
  font-weight: 500;
  line-height: 1.05;
  color: var(--color-white);
  max-width: 14ch;
  margin: 0 0 1.5rem;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s ease 0.35s, transform 0.6s ease 0.35s;
}

.hero__desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 40ch;
  line-height: 1.65;
  margin: 0 0 2rem;
  font-weight: 400;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s ease 0.5s, transform 0.6s ease 0.5s;
}

.hero__cta {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s ease 0.65s, transform 0.6s ease 0.65s;
}

.hero__slide.is-active .hero__subtitle,
.hero__slide.is-active .hero__title,
.hero__slide.is-active .hero__desc,
.hero__slide.is-active .hero__cta {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero {
    min-height: auto;
    height: auto;
    padding-top: 100px;
    padding-bottom: 3rem;
    overflow: visible;
  }
  .hero__chevrons {
    width: min(92vw, 720px);
    height: clamp(360px, 58vw, 560px);
    max-height: none;
  }
  .hero__chevron,
  .hero__chevrons {
    overflow: visible;
  }
  .hero__chevron-svg {
    max-height: none;
  }
  .hero__chevron--3 .hero__chevron-svg {
    --hero-chevron-width: min(76vw, 520px);
    top: 0;
    left: clamp(-90px, -10vw, -42px);
  }
  .hero__chevron--2 .hero__chevron-svg {
    --hero-chevron-width: min(82vw, 560px);
    top: clamp(-34px, -4vw, -14px);
    left: clamp(-110px, -12vw, -52px);
  }
  .hero__chevron--1 .hero__chevron-svg {
    --hero-chevron-width: min(88vw, 600px);
    top: clamp(-58px, -7vw, -28px);
    left: clamp(-135px, -15vw, -68px);
  }
  .hero__illustration {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 100%;
    max-width: 520px;
    height: 320px;
    margin: 2rem auto 0;
    padding-right: 0;
  }
  .hero__content {
    align-items: flex-start;
    padding-top: 2rem;
  }
  .hero__slide {
    position: relative;
    top: auto;
    transform: none;
    max-width: none;
    padding-inline: 0;
  }
  .hero__vline { display: none; }
}

/* ===================================================================
 SECO 1 SOBRE NS
 =================================================================== */
.section-sobre {
  position: relative;
  background: transparent;
  padding-block: var(--section-py);
  overflow: hidden;
}

.section-sobre__inner {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 480px;
}

/* Lado esquerdo tringulos decorativos (PNGs da marca) */
.section-sobre__triangles {
  position: absolute;
  top: 0;
  left: 0;
  width: 48%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.section-sobre__tri {
  position: absolute;
  width: auto;
  height: auto;
  max-width: none;
  display: block;
}

.section-sobre__tri--1 {
  top: -4%;
  left: -6%;
  width: 78%;
}

.section-sobre__tri--2 {
  top: 18%;
  left: -2%;
  width: 58%;
  opacity: 0.75;
}

.section-sobre__spacer { /* reserva a coluna da esquerda para o grid */ }

/* Lado direito contedo */
.section-sobre__content {
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.section-sobre__content .section-title {margin-bottom: 1.5rem;font-weight: 500;}

.section-sobre__content p {
  font-size: 0.9rem;
  line-height: 1.5rem;
  color: var(--color-black);
  margin-bottom: 1rem;
  font-weight: 300;
  letter-spacing: 0px;
}

.section-sobre__body p:last-child {margin-bottom: 1.8rem;}


.section-sobre .container {
    padding-inline: clamp(1.5rem, 10vw, 11rem);
}
@media (max-width: 900px) {
  .hero {
    overflow: hidden;
  }

  .section-sobre__inner { grid-template-columns: 1fr; min-height: 0; }
  .section-sobre__triangles { position: relative; width: 100%; height: 180px; margin-bottom: 1.5rem; }
  .section-sobre__tri--1 { width: 55%; top: 0; left: -4%; }
  .section-sobre__tri--2 { width: 42%; top: 28%; left: 10%; }
  .section-sobre__spacer { display: none; }
}

/* Integrao HERO + SOBRE-NS
 Quando a seco Sobre Ns vem logo a seguir ao hero (caso da homepage),
 ela "absorvida" visualmente: sem padding-top duplo, tringulos decorativos
 ocultos (os chevrons do hero j cumprem esse papel) e o contedo alinhado
 direita para combinar com os screenshots da marca. */
.hero + .section-sobre {
  padding-top: 0;
  margin-top: clamp(-6rem, -6vw, -3rem); /* sobe levemente para sobrepor o hero */
  position: relative;
  z-index: 1;
}

.hero + .section-sobre .section-sobre__triangles {
  display: none;
}

.hero + .section-sobre .section-sobre__inner {
  grid-template-columns: 1fr 1fr;
  min-height: auto;
  align-items: start;
}

.hero + .section-sobre .section-sobre__content {
  margin-left: auto; /* empurra para a direita */
  max-width: 560px;
}

@media (max-width: 900px) {
  .hero + .section-sobre {
    margin-top: 0;
    padding-top: var(--section-py);
  }
  .hero + .section-sobre .section-sobre__inner { grid-template-columns: 1fr; }
  .hero + .section-sobre .section-sobre__content { margin-left: 0; }
}

/* ===================================================================
 SECO 2 SERVIOS
 =================================================================== */
.section-servicos {
  background: var(--color-dark);
  background-image: url(../imgs/fundoBolas.svg);
  background-size: contain;
  padding-block: var(--section-py);
  position: relative;
  overflow: hidden;
}

.section-servicos__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
/* Coluna esquerda */
.section-servicos__left {
  position: relative;
  z-index: 1;
}

.section-servicos__left .pre-title {
  color: var(--color-white) !important;
  margin-bottom: 0.75rem;
  letter-spacing: 0.4px;
  font-weight: 500;
}

.section-servicos__left .section-title {
  color: var(--color-red);
  margin-bottom: 1.5rem;
  font-weight: 500;
  width: 80%;
  max-width: 100%;
}

.section-servicos__left .section-title span {
  color: var(--color-red);
}

.section-servicos__left .section-text {
  color: rgba(255,255,255,1);
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.75;
  max-width: 550px;
}

.section-servicos__left .section-text.is-visible p {
  margin-bottom: 13px;
}

/* Coluna esquerda */
.section-servicos__left {
  position: relative;
  z-index: 1;
}

.section-servicos__left .pre-title {
  color: var(--color-white) !important;
  margin-bottom: 0.75rem;
  letter-spacing: 0.4px;
  font-weight: 500;
}

.section-servicos__left .section-title {
  color: var(--color-red);
  margin-bottom: 1.5rem;
  font-weight: 500;
  width: 94%;
  max-width: 100%;
}

.section-servicos__left .section-title span {
  color: var(--color-red);
}

.section-servicos__left .section-text {
  color: rgba(255, 255, 255, 1);
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.75;
  max-width: 550px;
}

.section-servicos__left .section-text.is-visible p {
  margin-bottom: 13px;
}

/* Coluna direita lista de serviÃ§os */
.section-servicos__list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding-top: 0.25rem;
  position: relative;
}

/* 
  O item tem sempre a largura final.
  Isto evita que o layout mexa quando faz hover.
*/
.servico-item {
  position: relative;
  display: flex;
  align-items: center;

  width: var(--servico-hover-width, min(710px, calc(100vw - 2rem)));
  max-width: calc(100vw - 2rem);
  min-height: 64px;

  padding: 0;
  border-radius: 20px;

  cursor: pointer;
  text-decoration: none;
  overflow: visible;

  background: transparent;
  color: var(--color-white);

  z-index: 1;
}

/* 
  Fundo visual do botÃ£o.
  ComeÃ§a vermelho e pequeno.
*/
.servico-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: min(270px, 100%);
  height: 100%;

  background: var(--color-red);
  border-radius: 20px;

  z-index: 1;

  transition:
    width 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.55s ease,
    box-shadow 0.55s ease;
}

/* Hover: o vermelho expande e vira branco/cinza */
.servico-item:hover,
.servico-item:focus-visible,
.servico-item.is-hover {
  z-index: 5;
}

.servico-item:hover::before,
.servico-item:focus-visible::before,
.servico-item.is-hover::before {
  width: 100%;
  background: #F0F0EE;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

/* Nome visÃ­vel no estado fechado */
.servico-item__name {
  position: relative;
  z-index: 2;

  display: block;
  padding: 20px 25px;

  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-white);
  letter-spacing: 0.01em;
  white-space: nowrap;

  opacity: 1;
  transition: opacity 0.08s ease;
}

/* Esconde o nome quando abre */
.servico-item:hover .servico-item__name,
.servico-item:focus-visible .servico-item__name,
.servico-item.is-hover .servico-item__name {
  opacity: 0;
}

/* 
  Card interno.
  JÃ¡ nÃ£o abre, jÃ¡ nÃ£o tem fundo branco, jÃ¡ nÃ£o tem clip-path.
  Apenas mostra o conteÃºdo depois do fundo expandir.
*/
.servico-item__hover-card {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  padding: 21px 25px;
  border-radius: 20px;

  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: space-around;

  background: transparent !important;
  box-shadow: none !important;

  clip-path: none !important;
  transform: none !important;

  opacity: 0;
  pointer-events: none;

  z-index: 3;

  transition: opacity 0.12s ease 0.15s;
}
.servico-item__name {
  transition: opacity 0.05s ease;
}

.servico-item__hover-card {
  transition: opacity 0.08s ease 0.08s;
}
/* Mostra conteÃºdo depois da expansÃ£o */
.servico-item:hover .servico-item__hover-card,
.servico-item:focus-visible .servico-item__hover-card,
.servico-item.is-hover .servico-item__hover-card {
  opacity: 1;
  pointer-events: auto;
}

/* TÃ­tulo dentro do hover */
.servico-item__hover-title {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-black);

  flex-shrink: 0;
  max-width: min(42%, 22ch);

  line-height: 1.18;
  white-space: normal;

  opacity: 1;
}

/* DescriÃ§Ã£o dentro do hover */
.servico-item__hover-desc {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--color-dark);

  flex: 1;
  min-width: 0;

  text-align: right;
  white-space: nowrap;
  overflow: hidden;

  opacity: 1;
}

/* Mobile */
@media (max-width: 900px) {
  .section-servicos__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .servico-item {
    width: 100%;
    max-width: 100%;
    min-height: auto;

    padding: 10px 0;
    border-radius: 22px;

    flex-direction: column;
    align-items: flex-start;

    background: var(--color-red);
    color: var(--color-white);

    overflow: hidden;
  }

  .servico-item::before {
    display: none;
  }

  .servico-item:hover,
  .servico-item:focus-visible,
  .servico-item.is-hover {
    width: 100%;
    background: var(--color-red);
    color: var(--color-white);
    box-shadow: none;
  }

  .servico-item__name {
    display: none;
  }

  .servico-item__hover-card {
    position: relative;
    inset: auto;

    width: 100%;
    height: auto;

    padding: 1rem 1.5rem;
    border-radius: 0;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;

    background: transparent !important;
    box-shadow: none !important;

    opacity: 1;
    pointer-events: auto;

    transition: none;
  }

  .servico-item__hover-title {
    color: var(--color-white);
    font-size: 1.15rem;
    max-width: 100%;
    white-space: normal;
  }

  .servico-item__hover-desc {
    color: rgba(255, 255, 255, 0.85);
    text-align: left;
    white-space: normal;
    overflow: visible;
    opacity: 1;
  }
}
/* ===================================================================
 SECO 3 CONTADORES
 =================================================================== */
.section-contadores {
  background: var(--color-gray);
  padding-block: calc(var(--section-py) * 0.9);
}

.section-contadores__grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
  flex-wrap: wrap;
}

.counter-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0;
}

.counter-item__number {
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: 600;
  color: var(--color-red);
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: -0.02em;
	text-align:right;
	    display: inline-block;
    min-width: 2ch;
    font-variant-numeric: tabular-nums;

}


.counter-item__suffix {
    display: inline-block;
}

.counter-item__label {
  position: relative;
  font-size: 1.1rem;
  line-height: 1.35;
  color: var(--color-black);
  font-weight: 400;
  padding-left: 1.5rem;
  max-width: 203px;
}

.counter-item__label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8%;
  bottom: 8%;
  width: 1px;
  background: rgba(0,0,0,.25);
}

@media (max-width: 768px) {
  .section-contadores__grid {flex-direction: column;gap: 2rem;display: flex;align-content: space-between;}
}

/* ===================================================================
 SECO 4 CLIENTES (Quem confia em ns + Marquee infinito)
 =================================================================== */
.section-clientes {
  padding-block: calc(var(--section-py) * 0.9) calc(var(--section-py) * 0.7);
  background: var(--color-white);
  overflow: hidden;
  position: relative;
  padding-bottom: 200px;
}

/* Curva vermelha decorativa que sai pelo canto direito */
.section-clientes__shape {
  position: absolute;
  right: 0px;
  top: -83%;
  width: 60%;
  max-width: 900px;
  pointer-events: none;
  transform: rotate(0deg);
  z-index: 2;
}
.section-clientes__shape:before{
  height: 190px;
  content: "";
  right: 0px;
  bottom: 0px;
  width: 200px;
  background: white;
  position: absolute;
  z-index: 0;
}
.section-clientes__shape svg,
.section-clientes__shape-svg {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
}

/* Cabealho: texto esquerda, boto direita */
.section-clientes__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  margin-right: -65px;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.section-clientes__intro {
  flex: 1 1 auto;
  max-width: 720px;
}

.section-clientes__pre {
  margin-bottom: 1rem;
  color: var(--color-black) !important;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.section-clientes__title {
  color: var(--color-red);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.section-clientes__desc {
  color: var(--color-black);
  max-width: 600px;
}

.section-clientes__desc p:last-child {
  margin-bottom: 0;
}

/* ============================================================
 VARIANTE "INLINE" marquee passa ATRS do ttulo.
 Usada na pgina de Servios.
 ============================================================ */
.section-clientes--inline {
  padding-bottom: 0;
  padding-block: clamp(3rem, 6vw, 5rem);
}
.section-clientes__head-wrap{
  /* position: relative; */
  /* z-index: 1; */
  /* background: transparent; */
}
.section-clientes--inline .section-clientes__head {
  margin-bottom: 0;
  align-items: center;
  background: var(--color-white);
  /* z-index: 1; */
  width: fit-content;
}
.section-clientes--inline .section-clientes__intro {
  position: relative;
  z-index: 3;
  flex: 0 0 auto;
  max-width: 320px;
  background: linear-gradient(90deg, #fff 70%, rgba(255,255,255,0) 100%);
  padding-right: 4rem;
  border-right: 1px solid var(--color-black);
}
.section-clientes--inline .section-clientes__title {
  margin-bottom: 0;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
}
.section-clientes--inline .section-clientes__pre {
  margin-bottom: 0.5rem;
}
/* Esconde a descrio e CTA na variante inline (s queremos label + ttulo) */
.section-clientes--inline .section-clientes__desc,
.section-clientes--inline .section-clientes__cta {
  display: none;
}
/* Marquee posicionado em absoluto, a passar por trs do ttulo */
.section-clientes--inline .section-clientes__track-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 0;
  overflow: hidden;
  max-width: calc(var(--container-max) - 10%);
  padding-inline: 0;
  right: 0px;
  flex-direction: row;
}
.section-clientes--inline .section-clientes__track {
  margin-left: 0;
}
.section-clientes--inline .section-clientes__shape { display: none; }

@media (max-width: 800px) {
  .section-clientes--inline .section-clientes__intro {
    background: rgba(255,255,255,0.95);
    padding-right: 1rem;
    max-width: 60%;
  }
}

.section-clientes__cta {
  flex-shrink: 0;
  margin-right: 120px;
}

/* ----- Marquee track ----- */
.section-clientes__track-wrap {
  overflow: hidden;
  position: relative;
  z-index: 1;
  /* Pause animation when the wrapper is hovered (mais largo que track) */
}

.section-clientes__track-wrap div.section-clientes__track:nth-child(2){
  display:none;
}

/* Gradiente fade nas bordas */
.section-clientes__track-wrap::before,
.section-clientes__track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}

.sobrenos-clients__slider{
	position:relative;
}

.sobrenos-clients__slider:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0px;
    width: clamp(7rem, 28vw, 2.5rem);
    height: 100%;
    background: linear-gradient(to left, transparent 0%, var(--color-white) 90%);
    z-index: 5;
    pointer-events: none;
}


.home .section-clientes__track-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0px;
    width: 160px;
    height: 100%;
    background: linear-gradient(to right, white 80px, transparent 100%);
    z-index: 5;
    pointer-events: none;
}

.section-clientes__track-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 300px;
    width: clamp(7rem, 28vw, 2.5rem);
    height: 100%;
    background: linear-gradient(to left, transparent 0%, var(--color-white) 90%);
    z-index: 5;
    pointer-events: none;

}

.section-clientes__head:before {
    content: "";
    position: absolute;
    top: 0;
    left: -16px;
    width: clamp(1rem, 28vw, -1.5rem);
    height: 100%;
    background: white;
    z-index: 5;
    pointer-events: none;
}

.section-clientes__track-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--color-white), transparent);
}

.section-clientes__track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: marquee 38s linear infinite;
  will-change: transform;
}

/* Hover na zona do scroll: para a animao (mas o grayscale fica por logo, ver abaixo) */
.section-clientes__track-wrap:hover .section-clientes__track {
  animation-play-state: paused;
}

/* Apenas o logo individual com hover fica em grayscale */
.section-clientes__item:hover .section-clientes__logo {
  filter: grayscale(100%);
  opacity: 0.55;
}

.section-clientes__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
  min-width: 160px;
  padding: 0 1rem;
}

.section-clientes__logo {
  max-width: 200px;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
  /* Estado normal: cores naturais do logo, scroll a correr */
  filter: grayscale(0%);
  opacity: 1;
  transition: filter var(--transition), opacity var(--transition);
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Reduzir motion para utilizadores com prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .section-clientes__track {
    animation: none;
  }
}

/* Responsivo */
@media (max-width: 900px) {
  .section-clientes__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .section-clientes__shape {
    right: -30%;
    top: -10%;
    width: 90%;
    opacity: 0.85;
    display: none;
  }
  .section-clientes__track {
    gap: 2.5rem;
    animation-duration: 28s;
  }
  .section-clientes__item {
    height: 80px;
    min-width: 120px;
  }
  .section-clientes__logo {
    max-width: 140px;
    max-height: 65px;
  }
}

/* ===================================================================
 SECO 5 NOTCIAS
 =================================================================== */
.section-noticias {
  padding-block: var(--section-py);
  background: var(--color-gray);
  background-image: url('../imgs/fundo-noticias.svg');
  position: relative;
  overflow: hidden;
  padding-top: 40px;
  padding-bottom: 80px;
}

.section-noticias__inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  position: relative;
  z-index: 1;
  align-content: space-between;
  grid-auto-flow: row;
}

.section-noticias__left {padding-top: 1rem;position: sticky;top: 100px;display: flex;flex-direction: column;flex-wrap: nowrap;justify-content: space-between;}
.section-noticias__left .pre-title {color: var(--color-black) !important;margin-bottom: 0.85rem;letter-spacing: 0;font-weight: 500;}
.section-noticias__left .section-title {
  color: var(--color-red);
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 3vw, 3rem);
  line-height: 1.05;
  font-weight: 500;
}
.section-noticias__left .section-text {
  margin-bottom: 2rem;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Grid de cards */
.section-noticias__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding-top: 160px;
}

/* Card de notcia */
.noticia-card {
  border-radius: 22px;
  overflow: hidden;
  background: var(--color-white);
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  padding: 16px;
}

.noticia-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(0,0,0,.12);
}

/* Imagem / topo do card */
.noticia-card__img-wrap {
  position: relative;
  aspect-ratio: 4/4;
  overflow: hidden;
  display: block;
  background: transparent;
}

.noticia-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  border-radius: 8px;
  overflow: hidden;
}

.noticia-card:hover {transform: scale(1.04) !important;}

/* Overlay do autor retngulo vermelho com nome+cargo em baixo esquerda */
.noticia-card__author {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  padding: 0px;
  background: transparent;
  border-radius: 6px;
  max-width: calc(100% - 2rem);
}

.noticia-card__author-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-white);
  display: block;
  line-height: 1.1;
}

.noticia-card__author-title {
  font-size: 0.5rem;
  color: rgba(255,255,255,.85);
  display: block;
  margin-top: 2px;
  letter-spacing: 0.03em;
  font-weight: 400;
}

/* Corpo */
.noticia-card__body {
  padding: 1.25rem 0rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.noticia-card__title {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-black);
  margin-bottom: 0.85rem;
}

.noticia-card__title a {color: inherit;transition: color var(--transition);font-weight: 500;}
.noticia-card__title a:hover { color: var(--color-red); }

.noticia-card__sep {
  border: none;
  height: 1px;
  background: var(--color-red);
  width: 100%;
  margin: 0 0 0.85rem;
}

.noticia-card__excerpt {
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--color-dark);
  flex: 1;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 400;
}

.noticia-card__footer {
  display: flex;
  align-items: center;
}

.noticia-card__footer .btn { margin: 0; }

@media (max-width: 1100px) {
  .section-noticias__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .section-noticias__left { position: static; }
  .section-noticias__grid {grid-template-columns: repeat(2, 1fr);padding-top: 20px;}
}

@media (max-width: 640px) {
  .section-noticias__grid { grid-template-columns: 1fr; }
}

/* ===================================================================
 SECO 6 FALE CONNOSCO / CTA
 =================================================================== */
.section-cta {
  padding-block: var(--section-py);
  background: var(--color-white);
  overflow: hidden;
  position: relative;
  min-height: 480px;
}

/* Faixa vermelha que encosta ao bordo esquerdo da secao,
 ate ao inicio da imagem-background. */
.section-cta::before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: clamp(40px, 8vw, 120px);
  background: var(--color-red);
  z-index: 0;
  pointer-events: none;
}

/* cone/logo decorativo: ancorado ao canto inferior ESQUERDO da SECO
 (fora do container, como se fosse um background) */
.section-cta__icon {
  position: absolute;
  /* Comeca apos a faixa vermelha (mesmo width da faixa) */
  left: 0;
  bottom: -1px;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
}

.section-cta__icon .section-cta__svg,
.section-cta__icon svg {
  width: min(550px, 40vw);
  height: auto;
  display: block;
}

.section-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 420px;
}

/* Contedo direito */
.section-cta__content {
  max-width: 560px;
  grid-column: 2; /* Mantm o contedo na coluna direita; a esquerda fica para o cone visual */
}
.section-cta__content .pre-title {
  color: var(--color-black) !important;
  margin-bottom: 0.85rem;
  letter-spacing: 0.05rem;
  font-weight: 500;
}

.section-cta__title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--color-red);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.section-cta__desc {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-black);
  margin-bottom: 2rem;
}

@media (max-width: 900px) {
  .section-cta {min-height: auto;padding-bottom: calc(var(--section-py) + 170px);}
  .section-cta::before { width: 24px; }
  .section-cta__inner { grid-template-columns: 1fr; }
  .section-cta__content {grid-column: 1;padding-left: 0px;}
  .section-cta__icon {
    left: 0px;
    width: 60%;
    max-width: 210px;
    opacity: 1;
  }
  .section-cta__icon .section-cta__svg,
  .section-cta__icon svg { width: 100%; }
}


/* ===================================================================
 FOOTER
 =================================================================== */
.site-footer {
  background: var(--color-red);
  padding-block: 4.5rem 0;
  color: var(--color-white);
}

.site-footer .container{
	max-width:100%;
	padding-inline:unset;
}

.site-footer__main {
    display: flex;
    grid-template-columns: 1.3fr 1fr 1fr auto;
    gap: 30rem;
    padding-bottom: 4rem;
    align-items: start;
    flex-direction: row;
    justify-content: space-between;
    padding-right: var(--container-pad);
    padding-left: var(--container-pad);
}

/* Coluna 1 logo + tagline + social */
.site-footer__brand {}

.site-footer__logo {display: inline-block;margin-bottom: 1.2rem;}
.site-footer__logo svg { width: 220px; height: auto; color: var(--color-white); fill: currentColor; }

.site-footer__tagline {
  font-size: 1rem;
  color: var(--color-white);
  margin-top: 0;
  font-weight: 400;
}

.site-footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 4rem;
}

.site-footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #CA0603;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: background var(--transition), transform var(--transition);
}

.site-footer__social-link:hover {
  background: rgba(0,0,0,.45);
  transform: translateY(-2px);
}

.site-footer__social-link svg { width: 16px; height: 16px; }
.site-footer__content{
  display:flex;
  gap: 9rem;
}
/* Coluna 2 Contacto */
.site-footer__contact { padding-top: 0.5rem; width:34%; max-width:100%; }

.site-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--color-white);
  line-height: 1.5;
  font-weight: 400;
	max-width:100%;
	width:80%;
}

.site-footer__contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.site-footer__contact-item a { color: inherit; transition: opacity var(--transition); }
.site-footer__contact-item a:hover { opacity: 0.75; }

/* Coluna 3 Navegao */
.site-footer__nav { padding-top: 0.25rem; }
.site-footer__nav ul {display: flex;flex-direction: column;gap: 0.8rem;list-style: none;padding: 0;margin: 0;}

.site-footer__nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
  transition: gap var(--transition), opacity var(--transition);
  text-decoration: none;
}

.site-footer__nav a::before {
  content: '';
  width: 8px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='12' viewBox='0 0 8 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 1L6.5 6L1.5 11' stroke='white' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.site-footer__nav a:hover {/* gap: 0.9rem; */opacity: 0.85;}

/* Coluna 4 SAP Partner badge */
.site-footer__badge {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.site-footer__badge img { max-width: 130px; height: auto; display: block; }

/* Bottom bar */
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.3);
  padding-block: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
	padding-left:var(--container-pad);
	padding-right:var(--container-pad);
}

.site-footer__copy {
  font-size: 0.8rem;
  color: var(--color-white);
  font-weight: 400;
}

.site-footer__legal {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer__legal a {
  font-size: 0.8rem;
  color: var(--color-white);
  transition: opacity var(--transition);
  font-weight: 400;
}

.site-footer__legal a:hover { opacity: 0.75; }

@media (max-width: 1024px) {
  .site-footer__main {grid-template-columns: 1fr 1fr;gap: 3rem;display: flex;flex-direction: column;}
  .site-footer__badge { justify-content: flex-start; }
  .site-footer__content{display: flex;flex-direction: column;}
}

@media (max-width: 640px) {
  .site-footer__main { grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 2.5rem; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .site-footer__social { margin-top: 2rem; }
}


/* ===================================================================
 PGINAS INTERIORES HERO / BANNER
 =================================================================== */
.page-hero {
  position: relative;
  padding-top: calc(var(--section-py) + 80px);
  padding-bottom: var(--section-py);
  background: var(--color-dark);
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.8), rgba(0,0,0,.4));
}

.page-hero__content {
  position: relative;
  z-index: 1;
}

.page-hero__pre  { color: var(--color-red); margin-bottom: 0.75rem; }
.page-hero__title { font-size: var(--size-title-lg); font-weight: 800; color: var(--color-white); }

/* ===================================================================
 PGINA SERVIO INNER
 =================================================================== */
.single-servico__content {
  padding-block: var(--section-py);
}

.single-servico__inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 5rem;
  align-items: start;
}

.single-servico__body { font-size: 1rem; line-height: 1.8; color: #333; }
.single-servico__body h2 { font-size: 1.5rem; font-weight: 700; margin: 2rem 0 0.75rem; }
.single-servico__body p { margin-bottom: 1rem; }

.single-servico__sidebar {
  position: sticky;
  top: 100px;
}

.single-servico__cta-box {
  background: var(--color-gray);
  border-radius: 16px;
  padding: 2rem;
}

.single-servico__cta-box h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; }
.single-servico__cta-box p { font-size: 0.9rem; color: #555; margin-bottom: 1.5rem; }

@media (max-width: 900px) {
  .single-servico__inner { grid-template-columns: 1fr; }
  .single-servico__sidebar { position: static; }
}

/* ===================================================================
 PGINA NOTCIA INNER
 =================================================================== */
.single-noticia__header {
  padding-block: var(--section-py);
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
}

.single-noticia__header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.single-noticia__header-content {
  position: relative;
  z-index: 1;
  padding-top: 80px;
}

.single-noticia__cat {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-red);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.single-noticia__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-white);
  max-width: 20ch;
  margin-bottom: 1.5rem;
}

.single-noticia__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.single-noticia__author-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.3);
}

.single-noticia__author-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-white);
}

.single-noticia__author-title {
  font-size: 0.75rem;
  color: rgba(255,255,255,.65);
}

.single-noticia__body {
  padding-block: var(--section-py);
  font-size: 1.05rem;
  line-height: 1.85;
  color: #333;
  max-width: 720px;
  margin-inline: auto;
}

.single-noticia__body h2 { font-size: 1.4rem; font-weight: 700; margin: 2rem 0 0.75rem; }
.single-noticia__body p  { margin-bottom: 1.25rem; }
.single-noticia__body img { border-radius: 12px; margin-block: 2rem; }

/* ===================================================================
 ARQUIVO SERVIOS / NOTCIAS
 =================================================================== */
.archive-header {
  background: var(--color-gray);
  padding-block: calc(var(--section-py) * 0.7);
  padding-top: calc(var(--section-py) * 0.7 + 80px);
}

.archive-header__pre  { margin-bottom: 0.5rem; }
.archive-header__title { font-size: var(--size-title-md); font-weight: 800; }

.archive-grid {
  padding-block: var(--section-py);
}

.archive-grid__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) { .archive-grid__inner { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .archive-grid__inner { grid-template-columns: 1fr; } }

/* ===================================================================
 PGINA CONTACTOS
 =================================================================== */
.page-contactos {
  padding-block: var(--section-py);
  padding-top: calc(var(--section-py) + 80px);
}

.page-contactos__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 0.4rem;
  margin-top: 1.25rem;
}

.contact-form label:first-child { margin-top: 0; }

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: var(--color-black);
  background: var(--color-white);
  transition: border-color var(--transition);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: var(--color-red); }

.contact-form textarea { min-height: 140px; resize: vertical; }

.contact-form .btn { margin-top: 1.5rem; }

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info__icon svg { width: 18px; height: 18px; color: white; fill: white; }

.contact-info__label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #888; }
.contact-info__value { font-size: 1rem; font-weight: 500; margin-top: 0.15rem; }

@media (max-width: 900px) {
  .page-contactos__inner { grid-template-columns: 1fr; }
}

/* ===================================================================
 UTILITRIOS
 =================================================================== */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Animao de entrada (scroll) */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate][data-delay="1"] { transition-delay: 0.1s; }
[data-animate][data-delay="2"] { transition-delay: 0.2s; }
[data-animate][data-delay="3"] { transition-delay: 0.3s; }
[data-animate][data-delay="4"] { transition-delay: 0.4s; }
[data-animate][data-delay="5"] { transition-delay: 0.5s; }

/* ===================================================================
   SERVICO single - HERO (chevron unico, igual ao da pagina de contactos)
   =================================================================== */
.servico-hero {
  position: relative;
  width: 100%;
  min-height: clamp(520px, 100vh, 100vh);
  overflow: hidden;
  isolation: isolate;
  background: #e0e0e0;
}

/* Imagem destacada (background do hero) */
.servico-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Container do chevron + conteudo, sobreposto a imagem */
.servico-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  top: 90px;
}

/* Chevron vermelho unico (mesma forma da pagina de contactos) */
.servico-hero__shape {
  position: absolute;
  left: 0;
  top: 44%;
  transform: translateY(-48%);
  height: 100vh;
  filter: drop-shadow(8px 8px 20px rgba(0,0,0,0.25));
}

.servico-hero__content {
    position: relative;
    z-index: 3;
    pointer-events: auto;
    padding-top: calc(var(--header-height, 90px) + 7rem);
    padding-left: clamp(1.5rem, 5vw, 5rem);
    padding-right: 2rem;
    padding-bottom: 3rem;
    max-width: clamp(320px, 40%, 580px);
    width: 100%;
    color: #fff;
}


.servico-hero__pre {
  color: #fff !important;
  font-weight: 500;
  opacity: 0.95;
  margin-bottom: 1rem;
}

.servico-hero__title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.05;
  font-weight: 500;
  color: #fff;
  margin: 0 0 0.75rem;
	width:90%;
	max-width:100%;
}

.servico-hero__subtitle {
  font-size: 2.25rem;
  font-weight: 500;
  color: #fff;
  opacity: 0.95;
  margin: 0 0 1rem;
  line-height: 1.35;
}

.servico-hero__desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 1.75rem;
  max-width: 400px;
  font-weight: 500;
}

.servico-hero__desc p { margin: 0 0 0.85rem; }
.servico-hero__desc p:last-child { margin-bottom: 0; }

.servico-hero__cta { margin-top: 1rem; }

/* Badge GROW FAST: circulo branco com texto vermelho */
.servico-hero__badge {
  position: absolute;
  right: clamp(2rem, 6vw, 6rem);
  top: calc(var(--header-height, 90px) + 2rem);
  width: 160px;
  height: 160px;
  border: 3px solid var(--color-red);
  border-radius: 50%;
  background: var(--color-white, #fff);
  color: var(--color-red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  transform: rotate(-8deg);
  z-index: 15;
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.servico-hero__badge-strike {
  font-size: 1.4rem;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  opacity: 0.7;
}

.servico-hero__badge-main {
  font-size: 2.2rem;
  line-height: 1;
}

@media (max-width: 900px) {
  .servico-hero { 
        min-height: auto;
        padding-bottom: 0rem;
      }
  .servico-hero__overlay {
      top: 0px;
      position: relative;
  }
  .servico-hero__overlay {
      top: 0px;
      position: relative;
      background: var(--color-red);
  }
  .servico-hero__shape {
    height: auto;
    width: 100%;
    max-width: 100%;
    top: 0;
    transform: none;
    opacity: 0.96;
    display: none;
  }
  .servico-hero__image {
    position: relative;
    height: 60vh;
    background-position: right;
}
  .servico-hero__content {
    max-width: 100%;
    padding-right: clamp(1.5rem, 5vw, 5rem);
    padding-bottom: clamp(3rem, 12vw, 6rem);
  }
  .servico-hero__badge { width: 120px; height: 120px; }
  .servico-hero__badge-main { font-size: 1.7rem; }
  .servico-hero__badge-strike { font-size: 1.05rem; }

.servico-hero__content {
      padding-top: 50px !important;
      max-width: clamp(100%, 40%, 580px) !important;
  }
}

/* Navegacao prev/next entre servicos - oculta */
.servico-nav { display: none !important; }

.servico-nav-old-styles-disabled {
  position: absolute;
  bottom: 2rem;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-dark);
  text-decoration: none;
  transition: all var(--transition, 0.25s ease);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.servico-nav:hover {
  background: var(--color-red);
  color: var(--color-white, #fff);
  border-color: var(--color-red);
  transform: translateY(-2px);
}

.servico-nav--prev { left: clamp(1rem, 3vw, 3rem); }
.servico-nav--next { right: clamp(1rem, 3vw, 3rem); }

.servico-nav__arrow {
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  display: inline-block;
}

.servico-nav--prev .servico-nav__arrow {
  border-right: 10px solid currentColor;
}
.servico-nav--next .servico-nav__arrow {
  border-left: 10px solid currentColor;
}

.servico-nav__label {
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .servico-nav__label { display: none; }
  .servico-nav { padding: 0.65rem 0.9rem; }
}

/* ===================================================================
   SERVICO single - BLOCOS DE CONTEUDO
   Layout: cabecalho 2 colunas (titulo | descricao), lista de bullets
   com separadores, card "O que e?" rosa centrado.
   =================================================================== */
.servico-block {
  padding-block: clamp(3rem, 6vw, 5.5rem);
}

.servico-block--bg-white { background: var(--color-white, #fff); }
.servico-block--bg-gray  { background: var(--color-gray, #f4f4f4); }

/* CAIXA 1: cabecalho com 2 colunas */
.servico-block__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
  margin-bottom: 2.5rem;
}

@media (max-width: 900px) {
  .servico-block__head {grid-template-columns: 1fr;display: flex;flex-direction: column;}

  .servico-hero__title{
      font-size: clamp(2.4rem, 3vw, 2.6rem);
  }
  .servico-hero__subtitle {
      font-size: 1.9rem;
  }
}

.servico-block__head-left {max-width: 100%;}

.servico-block__pre {
  color: var(--color-red);
  margin-bottom: 0.75rem;
}
.servico-block__head-right{
  display: flex;
  justify-content: flex-end;
}

.servico-block__title {
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  line-height: 1.1;
  font-weight: 500;
  color: var(--color-black);
  margin: 0 0 0.4rem;
}

.servico-block__subtitle {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-black);
  margin: 0;
}

.servico-block__head-right .servico-block__desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #2a2a2a;
  max-width: 100%;
  width: 499px;
}

.servico-block__desc p { margin: 0 0 0.85rem; }
.servico-block__desc p:last-child { margin-bottom: 0; }

/* CAIXA 2: lista de bullets com separadores horizontais (full width) */
.servico-block__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.servico-block__bullets li {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--color-red);
  line-height: 1.5;
  color: var(--color-black);
  font-size: 0.95rem;
}

.servico-block__bullets li:first-child {
  border-top: 0px solid rgba(227, 38, 28, 0.35);
  padding-top: 50px;
}

.servico-block__footnote {
  margin: 0 0 2rem;
  font-size: 0.7rem;
  color: var(--color-black);
}

/* CAIXA 3: grid com ate 3 cards (O que e? / Vantagens / Porque a Maingoal?)
   Cada card: titulo com fundo vermelho escuro + body vermelho claro. */
.servico-block__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: 100px;
}

.servico-block__cards--1 { grid-template-columns: minmax(260px, 360px); }
.servico-block__cards--2 { grid-template-columns: repeat(2, 1fr); max-width: 720px; }

@media (max-width: 900px) {
  .servico-block__cards,
  .servico-block__cards--1,
  .servico-block__cards--2 { grid-template-columns: 1fr; max-width: 480px; }
}

.servico-card-info {
  background: var(--color-red); /* vermelho claro - body */
  border-radius: 12px;
  /* overflow: hidden; */
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  border-top-left-radius: 20px;
}

/* Override da animacao generica: cards do servico aparecem so com opacity
   (sem translate), de opacity 0 para 1, da esquerda para a direita
   atraves dos data-delay 3/4/5 ja aplicados. */
.servico-card-info[data-animate] {
  opacity: 0;
  transform: none;
  transition: opacity 0.6s ease;
}
.servico-card-info[data-animate].is-visible {
  opacity: 1;
  transform: none;
}

/* Cabecalho do card: fundo vermelho escuro */
.servico-card-info__head {
  background: #CA0603;
  padding: 2.25rem 1.5rem 1.25rem;
  display: flex;
  align-items: center;
  position: relative;
  gap: 0.85rem;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom: 1px solid #fff;
}

.servico-card-info__icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  position: absolute;
  top: 0px;
  right: 30px;
  transform: translateY(-50%);
  z-index: 1;
  background: var(
  --color-white);
  border: 2px solid #CA0603;
  border-radius: 100%;
  padding: 14px;
}

.servico-card-info__icon svg,
.servico-card-info__icon-svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.servico-card-info__title {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-white);
  margin: 0;
  line-height: 1.2;
}

/* Body do card: fundo vermelho claro */
.servico-card-info__text {
  padding: 1.25rem 1.5rem 1.5rem;
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--color-white);
  flex: 1;
  min-height: 210px;
}

.servico-card-info__text p { margin: 0 0 0.6rem; }
.servico-card-info__text p:last-child { margin-bottom: 0; }

/* Contedo editor fallback */
.servico-content { padding-block: clamp(2rem, 4vw, 4rem); }
.servico-content__body { max-width: 820px; margin: 0 auto; }

/* ===================================================================
 ARCHIVE SERVIOS grid com card promo + cards de servio
 =================================================================== */
/* ============================================================
 ARCHIVE SERVIOS HERO
 - Fundo translcido vermelho (#E3261C33 = vermelho a ~20%)
 - Contedo dentro de .container
 - Faixa slida vermelha esquerda (20% do container) para o texto
 - Tringulos posicionados estaticamente, com 8% de espaamento entre cada
 - O 1 tringulo est sempre a opacity 1; clicar s muda o contedo (texto + URL do boto)
 ============================================================ */
.archive-servicos-hero {
    position: relative;
    padding-top: calc(var(--header-height, 30px) + 3rem);
    padding-bottom: 0px;
    overflow: hidden;
    isolation: isolate;
    background-image: url('/wp-content/uploads/2026/04/slide-2-scaled.png');
    background-position: center center;
	background-size:cover;
}

.archive-servicos-hero__inner {
  position: relative;
  height: 100vh;
	max-width:unset;
}

/* Faixa vermelha slida ESQUERDA 20% da largura do container */
.archive-servicos-hero__bar {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

/* Stack de tringulos: ocupa todo o container e capta clique para avanar */
.archive-servicos-hero__stack {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: pointer;
  outline: none;
}

.archive-servicos-hero__stack:focus-visible {
  outline: 2px dashed rgba(255,255,255,0.6);
  outline-offset: -8px;
}

/* Cada tringulo: posicionado por nth-child comeando depois da faixa
 vermelha (20%) e com 8% de offset para o tringulo seguinte.
 Apenas decorativos no mudam ao clicar. */
.archive-servicos-hero__triangle {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  width: auto;
  pointer-events: none;
}



.archive-servicos-hero__stack .archive-servicos-hero__triangle:nth-child(2):before {background: #e3261c;}

.archive-servicos-hero__stack .archive-servicos-hero__triangle:nth-child(3):before {background: #e3261c;}

.archive-servicos-hero__stack .archive-servicos-hero__triangle:nth-child(4):before {background: #e3261c;}

.archive-servicos-hero__stack .archive-servicos-hero__triangle:nth-child(5):before {background: #e3261c;}

.archive-servicos-hero__triangle-svg {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 105%;
  width: auto;
  max-width: none;
  margin-left: 8%;
  display: block;
}

/* Posies estticas comeam a 20% (depois da faixa vermelha) com 8% de offset entre cada */
/* Primeiro triangulo: COR e POSICAO sem qualquer quebra com a faixa vermelha (::before).
   - Comeca um pouco antes (19%) para sobrepor a faixa e esconder qualquer seam
   - Sem drop-shadow (que tornaria o vermelho mais escuro junto a faixa)
   - Opacity 1 com a mesma cor da faixa */
.archive-servicos-hero__triangle:nth-child(1) {
  opacity: 1;
  z-index: 3;
}
.archive-servicos-hero__triangle:nth-child(1) .archive-servicos-hero__triangle-svg {
  filter: none;
}

/* Triangulos 2-5: efeito leque, mas com cor solida (sem mistura com bg translucido).
   Em vez de "opacity" usamos brilho aumentado, mantendo a cor pura. */
.archive-servicos-hero__triangle:nth-child(2) {opacity: 1;z-index: 4;filter: brightness(1.1);}
.archive-servicos-hero__triangle:nth-child(2) .archive-servicos-hero__triangle-svg {  }

.archive-servicos-hero__triangle:nth-child(3) {opacity: 1;z-index: 3;filter: brightness(1.2);}
.archive-servicos-hero__triangle:nth-child(3) .archive-servicos-hero__triangle-svg {  }

.archive-servicos-hero__triangle:nth-child(4) {opacity: 1;z-index: 2;filter: brightness(1.3);}
.archive-servicos-hero__triangle:nth-child(4) .archive-servicos-hero__triangle-svg {  }

.archive-servicos-hero__triangle:nth-child(5) {opacity: 1;z-index: 1;filter: brightness(1.5);}
.archive-servicos-hero__triangle:nth-child(5) .archive-servicos-hero__triangle-svg {  }

/* Contedo do hero (sobre a faixa vermelha) */
.archive-servicos-hero__content {
  position: relative;
  z-index: 10;
  max-width: clamp(260px, 31%, 570px); /* no excede a largura da faixa vermelha (20%) + algum extra para o ttulo */
  padding: 11rem 1.5rem 3rem 2rem;
  color: #fff;
  pointer-events: none;
}

.archive-servicos-hero__cta {
  pointer-events: auto;
}

.archive-servicos-hero__pre {
  color: rgba(255, 255, 255, 0.95) !important;
  margin-bottom: 1rem;
  letter-spacing: 0.18em;
  padding-top: 60px;
  font-weight: 500;
}

.archive-servicos-hero__title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.1;
  color: #fff;
  margin: 0 0 1.25rem;
  font-weight: 500;
}

.archive-servicos-hero__desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 1.75rem;
  font-weight: 400;
}

/* Fade ao trocar de servio (s o contedo, NO os tringulos) */
.archive-servicos-hero__content {
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.archive-servicos-hero__content.is-switching {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

/* Responsivo */
@media (max-width: 900px) {
  .archive-servicos-hero__inner { min-height: auto;
        height: auto;
        padding-bottom: 40px; }
  .archive-servicos-hero__bar { width: 35%; }
  .archive-servicos-hero__content { max-width: 38%; }
  /* Em mobile, mantm 8% mas comea um pouco mais direita por causa da faixa */
  .archive-servicos-hero__triangle:nth-child(1) { left: 0%; }
  .archive-servicos-hero__triangle:nth-child(2) { display:none; }
  .archive-servicos-hero__triangle:nth-child(3) { display:none;}
  .archive-servicos-hero__triangle:nth-child(4) { display:none; }
  .archive-servicos-hero__triangle:nth-child(5) { display:none;}

.archive-servicos-hero__content {
    position: relative;
    z-index: 10;
    width: 50%;
    padding: 3rem 1.5rem 3rem 2rem;
    color: #fff;
    pointer-events: none;
    max-width: 100% !important;
	height:500px
}	
}	

@media (max-width: 600px) {
  .archive-servicos-hero__bar { width: 100%; opacity: 0.92; }
  .archive-servicos-hero__content { max-width: 100%; }
  .archive-servicos-hero__triangle { display: none; }
}

.archive-servicos {
  padding-block: clamp(4rem, 7vw, 6rem);
  background: var(--color-white, #fff);
}

.archive-servicos__head {
  max-width: 760px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.archive-servicos__pre {
  color: var(--color-red);
  margin-bottom: 0.75rem;
}

.archive-servicos__title {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  line-height: 1.05;
  font-weight: 800;
  color: var(--color-dark);
  margin: 0;
}

.archive-servicos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width:580px){
	.archive-servicos-hero__content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 3rem 1.5rem 3rem 2rem;
    color: #fff;
    pointer-events: none;
    max-width: 100% !important;
    height: 500px;
}
}

@media (max-width:652px){
	.noticias-filter__search {
    margin-left: 0 !important; 
}
}

@media (max-width: 1024px) { .archive-servicos__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .archive-servicos__grid { grid-template-columns: 1fr; } }

/* Card de servio base */
.servico-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--color-gray, #f4f4f4);
  border-radius: 18px;
  overflow: hidden;
  min-height: 360px;
  transition: transform var(--transition, 0.25s ease), box-shadow var(--transition, 0.25s ease);
}

.servico-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}

.servico-card__img-wrap {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.servico-card__img {
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.servico-card:hover .servico-card__img { transform: scale(1.04); }

.servico-card__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
}

.servico-card__pre {
  color: rgba(255, 255, 255, 0.85) !important;
  margin: 0;
}

.servico-card__title {
  font-size: 2.55rem;
  font-weight: 500;
  line-height: 42px;
  margin: 0;
  color: var(--color-dark);
  border-bottom: 1px solid var(--color-white);
	padding-bottom:15px;
}

.servico-card--item .servico-card__title {
line-height:32px;
}

.noticia-nav .btn--red:hover .btn__arrow{
	transform:unset;
}

.servico-card__title a {
  color: var(--color-red);
  text-decoration: none;
  transition: color var(--transition, 0.25s ease);
  font-size: 2rem;
  /* border-bottom: 1px solid var(--color-white); */
}

.servico-card__title a:hover { color: var(--color-red); }

.servico-card__text {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #444;
  margin: 0;
  flex: 1;
	padding-top:5px;
}

/* Wrapper do boto CTA dentro do card empurra para o fundo */
.servico-card__cta {
  margin-top: auto;
  padding-top: 0.5rem;
  align-self: flex-start;
}

/* Promo card (vermelho) */
.servico-card--promo {
  background: var(--color-red);
  color: var(--color-white, #fff);
  min-height: 300px;
  padding: 2.25rem;
  justify-content: space-between;
}

.servico-card--promo .servico-card__body {
  padding: 0;
  gap: 1rem;
}

.servico-card--promo .servico-card__title {color: var(--color-white, #fff);font-size: 2.55rem;border-bottom: 0px solid var(--color-white);}

.servico-card--promo .servico-card__text {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  font-weight: 400;
}

.servico-card--promo .servico-card__arrow {
  font-size: 2.5rem;
  line-height: 1;
  margin-top: 1.5rem;
  opacity: 0.85;
}

.archive-servicos__pagination { margin-top: 3rem; }
.archive-servicos__empty { padding: 3rem 0; color: #666; }

/* ===================================================================
 NOTCIAS HERO (archive + single) fundo cinzento com padro de dots
 =================================================================== */
.noticias-hero,
.noticia-hero {
  background-image: url(../imgs/fundo-noticias-geral.png);
  padding-top: calc(var(--header-height, 90px) + 3rem);
  padding-bottom: clamp(2rem, 7vw, 5.5rem);
  position: relative;
  overflow: hidden;
  background-color: var(--color-gray);
  background-size: cover;
}

/* Padro pontilhado subtil */
.noticias-hero::before,
.noticia-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 0, 0, 0.06) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  opacity: 0.7;
  pointer-events: none;
}

.noticias-hero__inner,
.noticia-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.noticias-hero__pre,
.noticia-hero__cat {
  color: var(--color-red);
  margin-bottom: 1rem;
  font-weight: 500;
}

.noticias-hero__title {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  line-height: 1.1;
  font-weight: 500;
  color: var(--color-red);
  margin: 0 0 1rem;
}

.noticias-hero__desc {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--color-black);
  margin: 0;
  max-width: 560px;
  font-weight: 500;
}

/* Single hero */
.noticia-hero__title {
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.15;
  font-weight: 500;
  color: var(--color-dark);
  margin: 0 0 1.5rem;
  max-width: 720px;
}

.noticia-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-bottom: 1.25rem;
}

.noticia-hero__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.noticia-hero__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.noticia-hero__author-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.noticia-hero__author-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--color-dark);
}

.noticia-hero__author-title {
  font-size: 0.78rem;
  color: #777;
}

.noticia-hero__date {
  font-size: 0.85rem;
  color: #666;
  padding-left: 1.5rem;
  border-left: 1px solid #ccc;
}

.noticia-hero__excerpt {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin: 0;
  max-width: 640px;
}

/* ===================================================================
 NOTCIAS FILTROS (DATA, TEMA, PESQUISA)
 =================================================================== */
.noticias-filter {
  background: var(--color-white, #fff);
  padding-block: 1.5rem;
  border-bottom: 0px solid #ececec;
}

.noticias-filter__form {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.noticias-filter__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #898989;
  text-transform: uppercase;
}

.noticias-filter__search {
  position: relative;
  margin-left: auto;
  min-width: 260px;
}

.noticias-filter__search input {
  width: 100%;
  padding: 0.7rem 2.5rem 0.7rem 1rem;
  border: none;
  background: var(--color-gray, #f1f1f1);
  border-radius: 999px;
  font-size: 0.70rem;
  font-family: var(--font-primary);
  color: var(--color-dark);
  letter-spacing: 0.05em;
  font-weight: 500;
}

.noticias-filter__search input::placeholder {
  color: #888;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.noticias-filter__search input:focus {
  outline: 2px solid rgba(227, 38, 28, 0.3);
  outline-offset: 2px;
}

.noticias-filter__search button {
  position: absolute;
  top: 50%;
  right: 0rem;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: none;
  background: #898989;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition, 0.25s ease);
}

.noticias-filter__search button:hover { background: #b81e16; }

/* Dropdown genrico */
.mg-dropdown { position: relative; }

.mg-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  background: transparent;
  border: none;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #898989;
  cursor: pointer;
  border-radius: 4px;
  transition: background var(--transition, 0.25s ease);
}

.mg-dropdown__toggle:hover { background: rgba(0, 0, 0, 0.04); }

.mg-dropdown__caret {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #898989;
  transition: transform var(--transition, 0.25s ease);
}

.mg-dropdown.is-open .mg-dropdown__caret { transform: rotate(180deg); }

.mg-dropdown__menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 220px;
  max-height: 320px;
  overflow-y: auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  padding: 0.5rem;
  display: none;
  z-index: 50;
}

.mg-dropdown.is-open .mg-dropdown__menu { display: block; }

.mg-dropdown__item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.6rem 0.85rem;
  border: none;
  background: transparent;
  font-size: 0.88rem;
  font-family: var(--font-primary);
  color: #333;
  cursor: pointer;
  border-radius: 6px;
  transition: background var(--transition, 0.2s ease);
}

.mg-dropdown__item:hover { background: #f6f6f6; }

.mg-dropdown__item.is-active {
  background: var(--color-red);
  color: #fff;
  font-weight: 700;
}

/* ===================================================================
 NOTCIAS GRID DO ARCHIVE
 =================================================================== */
.noticias-archive { padding-block: clamp(2.5rem, 5vw, 4rem); }

.noticias-archive__grid {
  display: grid;
  /* 4 colunas no archive (a homepage usa 3) */
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

@media (max-width: 1200px) { .noticias-archive__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px)  { .noticias-archive__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .noticias-archive__grid { grid-template-columns: 1fr; } }

.noticias-archive__more {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.noticias-archive__more-btn.is-loading {
  opacity: 0.6;
  cursor: wait;
  pointer-events: none;
}

.noticias-archive__more-btn.is-error {
  background: #444;
  animation: mg-shake 0.4s;
}

@keyframes mg-shake {
  0%, 100% { transform: translateX(0); }
  25%      { transform: translateX(-4px); }
  75%      { transform: translateX(4px); }
}

.noticias-archive__empty {
  padding: 4rem 0;
  text-align: center;
  color: #666;
}

/* O archive de notcias reutiliza o card .noticia-card definido acima
 na seco SECO 5 NOTCIAS para garantir o mesmo aspeto da home.
 Diferenas do archive: fundo cinza, mesma altura (grid). */
.noticias-archive .noticia-card {
  height: 100%;
  background: var(--color-gray, #F0F0EE);
  box-shadow: none;
}

.noticias-archive .noticia-card:hover {
  background: var(--color-gray, #F0F0EE);
  box-shadow: 0 18px 48px rgba(0,0,0,.08);
}

/* ===================================================================
 SINGLE NOTCIA CORPO + SIDEBAR
 =================================================================== */
.noticia-body { padding-block: clamp(2.5rem, 5vw, 4rem); }

.noticia-body__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

@media (max-width: 900px) {
  .noticia-body__grid { grid-template-columns: 1fr; }
}

.noticia-body__image {
  margin: 0 0 2rem;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.noticia-body__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.noticia-body__content {
  font-size: 1rem;
  line-height: 1.75;
  color: #2a2a2a;
  max-width: 720px;
}

.noticia-body__content p { margin: 0 0 1.25rem; }

.noticia-body__content h2,
.noticia-body__content h3 {
  margin: 2.25rem 0 1rem;
  color: var(--color-dark);
  font-weight: 800;
}

.noticia-body__content h2 { font-size: 1.5rem; }
.noticia-body__content h3 { font-size: 1.2rem; }

.noticia-body__content a { color: var(--color-red); }

/* Sidebar */
.noticia-sidebar__search {
  position: relative;
  margin-bottom: 1rem;
}

.noticia-sidebar__search input {
  width: 100%;
  padding: 0.7rem 2.8rem 0.7rem 1rem;
  border: none;
  background: var(--color-gray, #f1f1f1);
  border-radius: 999px;
  font-size: 0.85rem;
  font-family: var(--font-primary);
  color: var(--color-dark);
  letter-spacing: 0px;
  font-weight: 500;
}

.noticia-sidebar__search input::placeholder {
  color: #888;
  font-weight: 500;
  letter-spacing: 0em;
}

.noticia-sidebar__search button {
  position: absolute;
  top: 50%;
  right: 0rem;
  transform: translateY(-50%);
  width: 37px;
  height: 37px;
  border: none;
  background: #898989;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.noticia-sidebar__divider {
  height: 1px;
  background: var(--color-red);
  margin: 1.25rem 0 1.5rem;
}

.noticia-sidebar__heading {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-dark);
  margin: 0 0 1rem;
}

.noticia-sidebar__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.noticia-sidebar__item {
  padding: 0.75rem 0;
  border-bottom: 1px solid #eaeaea;
}

.noticia-sidebar__item:last-child { border-bottom: none; }

.noticia-sidebar__item a {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-dark);
  text-decoration: none;
  transition: color var(--transition, 0.25s ease);
}

.noticia-sidebar__item a:hover { color: var(--color-red); }

/* Navegao ANTERIOR / GRID / PRXIMO */
.noticia-nav {
  margin-top: 3rem;
  padding-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Os botes anterior/prximo usam .btn .btn--red (cor vermelha + bola preta).
 Aqui ajustamos s o estado desativado e a sombra de hover. */
.noticia-nav__btn {
  text-decoration: none;
}

.noticia-nav__btn:hover {
  transform: translateY(-2px);
}

.noticia-nav__btn.is-disabled {
  background: #ddd !important;
  color: #999 !important;
  cursor: default;
  pointer-events: none;
}

.noticia-nav__btn.is-disabled .btn__arrow {
  background-color: #aaa !important;
}

/* Boto central com cone de grid (volta ao arquivo) */
.noticia-nav__grid {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition, 0.25s ease), transform var(--transition, 0.25s ease);
}

.noticia-nav__grid:hover { background: #b81e16; transform: scale(1.05); }

.noticia-nav__grid-icon {
  display: grid;
  grid-template-columns: repeat(2, 6px);
  grid-template-rows: repeat(2, 6px);
  gap: 3px;
}

.noticia-nav__grid-icon i {
  display: block;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 1px;
}

@media (max-width: 640px) {
  .noticia-nav__btn { flex: 1; justify-content: center; min-width: 140px; }
  .noticia-nav__grid { order: 3; margin: 0 auto; }
}

/* ===================================================================
 CONTACTOS HERO COM MAPA + CHEVRON VERMELHO
 =================================================================== */
.contactos-hero {
  position: relative;
  width: 100%;
  min-height: clamp(520px, 100vh, 893px);
  overflow: hidden;
  isolation: isolate;
  background: #e0e0e0;
}

/* Mapa fundo (ocupa 100%) */
.contactos-hero__map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #c6d8d6;
}

.contactos-hero__map-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 0.9rem;
  text-align: center;
  padding: 2rem;
}

/* Overlay full-width: chevron + texto sobrepostos ao mapa */
.contactos-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  width: 100%;
}

/* Chevron vermelho (SVG): mantem-se a esquerda, terminando ao centro do hero */
.contactos-hero__shape {
  position: absolute;
  left: 0;
  top: 0%;
  width: auto;
  height: 100%;
}

/* Faixa vermelha solida a esquerda - vai do bordo esquerdo da viewport
   ate cobrir todo o gutter + ate aproximadamente onde o conteudo do container comeca.
   Garante que TUDO a esquerda do container (fora dele) e vermelho. */
.contactos-hero__overlay::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  bottom: 0;
  /* Largura: ate metade da viewport (cobre gutter esquerdo + metade do container) */
  width: 10vw;
  background: var(--color-red);
  z-index: 1;
}

/* Conteudo (texto + botao + contactos + redes) DENTRO do container */
.contactos-hero__content {
  position: absolute;
  z-index: 3;
  pointer-events: auto;
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: calc(var(--container-max) / 2);
  color: #fff;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Garante que o texto ocupa apenas a metade esquerda dentro do container */
.contactos-hero__content > * {
  max-width: clamp(280px, 45%, 540px);
  width: 100%;
}

.contactos-hero__pre {
  color: var(--color-black) !important;
  opacity: 1;
  margin-bottom: 1rem;
  font-weight: 500;
}

.contactos-hero__title {
  font-size: clamp(2.4rem, 4vw, 2.7rem);
  line-height: 1.05;
  font-weight: 600;
  color: #fff;
  margin: 0 0 1rem;
}

.contactos-hero__desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 1.75rem;
  max-width: 360px;
  font-weight: 500;
}

.contactos-hero__cta { margin-bottom: 2rem; }

.contactos-hero__cta .btn { background: #111; color: #fff; }
.contactos-hero__cta .btn:hover { background: #000; }

.contactos-hero__info {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contactos-hero__info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #fff;
  font-weight: 500;
}

.contactos-hero__info-item a { color: #fff; text-decoration: none; }
.contactos-hero__info-item a:hover { text-decoration: underline; }

.contactos-hero__info-icon {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: #fff;
}

.contactos-hero__social {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.contactos-hero__social-link,
.contactos-hero__social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #CA0603;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: background var(--transition), transform var(--transition);
}


.contactos-hero__social-link svg,
.contactos-hero__social a svg {
  width: 16px;
  height: 16px;
}

.contactos-hero__social-link:hover,
.contactos-hero__social a:hover  {
    background: rgba(0,0,0,.45);
    transform: translateY(-2px);
} 


@media (max-width: 900px) {
  .contactos-hero__shape {
    height: auto;
    width: 100%;
    max-width: 100%;
    top: 0;
    left: 0;
    transform: none;
    opacity: 0.96;
  }
  /* Em mobile a faixa vermelha cobre toda a metade esquerda da viewport */
  .contactos-hero__overlay::before { width: 70vw; }
  .contactos-hero__content {
    max-width: 100%;
    padding-left: clamp(1.5rem, 5vw, 5rem);
    padding-right: clamp(1.5rem, 5vw, 5rem);
    padding-bottom: clamp(3rem, 12vw, 6rem);
  }
  .contactos-hero__content > * { max-width: 100%; }
  .contactos-hero { min-height: auto; padding-bottom: 0rem; }
}

/* ===================================================================
 CONTACTOS POPUP (InfoWindow custom)
 Apenas a foto do local em crculo (sem texto/ttulo)
 =================================================================== */
.mg-map-popup {
  padding: 0;
  margin: 0;
  font-family: var(--font-primary);
}

.mg-map-popup--photo-only {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0%;
}

.mg-map-popup__photo {
  width: 150px;
  height: 150px;
  border-radius: 100%;
  overflow: hidden;
  border: 5px solid #FFFFFF;
  background: var(--color-gray, #eee);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.mg-map-popup__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  margin-top: 30px;
  border-radius: 100%;
}

/* Remover chrome do InfoWindow (background, seta, padding) para mostrar s a bola */
.gm-style .gm-style-iw-c {
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  height: 168px;
  width: 168px;
}
.gm-style .gm-style-iw-d {
  overflow: visible !important;
  padding: 0 !important;
  background: transparent !important;
  max-width: none !important;
  max-height: none !important;
  border-radius: 100%;
}
.gm-style .gm-style-iw-tc { display: none !important; }
.gm-style .gm-style-iw-tc::after { display: none !important; }
.gm-style .gm-style-iw button[aria-label="Close"],
.gm-style .gm-ui-hover-effect { display: none !important; }

/* ===================================================================
 CONTACTOS FORMULRIO (inputs sublinhados)
 =================================================================== */
.contactos-form-section {
  padding-block: clamp(3rem, 6vw, 5.5rem);
  background: #fff;
}

.contactos-form-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

@media (max-width: 900px) {
  .contactos-form-section__inner { grid-template-columns: 1fr; }
}

.contactos-form-section__pre {
  color: var(--color-black) !important;
  margin-bottom: 1rem;
  font-weight: 500;
}

.contactos-form-section__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  color: var(--color-red);
  margin: 0 0 1rem;
  font-weight: 500;
}

.contactos-form-section__desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-black);
  margin: 0;
  max-width: 420px;
  font-weight: 400;
}

/* Form com inputs sublinhados (sem borda volta) */
.contact-form-v2 {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-form-v2__row { display: block; }

.contact-form-v2__row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 540px) {
  .contact-form-v2__row--split { grid-template-columns: 1fr; }
}

.contact-form-v2__field {
  display: flex;
  flex-direction: column;
}

.contact-form-v2__field label {
  font-size: 0.70rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--color-black);
  margin-bottom: 0.35rem;
}

.contact-form-v2__field input,
.contact-form-v2__field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  background: transparent;
  padding: 0.4rem 0 0.6rem;
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--color-dark);
  border-radius: 0;
  transition: border-color var(--transition, 0.25s ease);
}

.contact-form-v2__field input:focus,
.contact-form-v2__field textarea:focus {
  outline: none;
  border-bottom-color: var(--color-red);
}

.contact-form-v2__field textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form-v2__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.78rem;
  line-height: 1.5;
  color: #555;
  cursor: pointer;
}

.contact-form-v2__consent input {
  margin-top: 0.2rem;
  accent-color: var(--color-red);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.contact-form-v2__submit { margin-top: 0.5rem; }

.contact-form-v2__submit .btn {
  /* border: none; */
  /* font: inherit; */
  /* font-weight: 800; */
  /* cursor: pointer; */
}

.contact-form-v2__alert {
  padding: 0.9rem 1.1rem;
  border-radius: 8px;
  font-size: 0.88rem;
}

.contact-form-v2__alert--ok {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.contact-form-v2__alert--err {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

/* =============================================================
 PGINA SOBRE NS
 ============================================================= */

.sobrenos-page { overflow: hidden; }


/* --------- Hero --------- */
.sobrenos-hero {
  background: var(--color-white);
  padding: clamp(6rem, 12vw, 11rem) 0 clamp(3rem, 6vw, 5rem);
}
.sobrenos-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--container-pad);
}
.sobrenos-hero__title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: var(--size-hero);
  line-height: 1.05;
  color: var(--color-dark);
  margin: .6rem 0 1.25rem;
  letter-spacing: -.01em;
}
.sobrenos-hero__desc {
  color: #4a4a4a;
  font-size: 1.0625rem;
  line-height: 1.6;
  max-width: 52ch;
  margin-bottom: 1.75rem;
}
.sobrenos-hero__media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 1rem;
  overflow: visible;
}
.sobrenos-hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  z-index: 1;
}
.sobrenos-hero__overlay {
  position: absolute;
  left: -4%;
  bottom: -4%;
  width: 55%;
  height: auto;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,.08));
}

/* --------- Misso & Viso (seco preta) --------- */
.sobrenos-mv {
  position: relative;
  background: var(--color-dark);
  color: var(--color-white);
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}

.sobrenos-mv .container{
  max-width: 100%;
}

.sobrenos-mv__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.08) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  opacity: .55;
  pointer-events: none;
}
.sobrenos-mv__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 5rem);
}
.sobrenos-mv__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.sobrenos-mv__row--top .sobrenos-mv__triangle { justify-self: end; }
.sobrenos-mv__row--bottom .sobrenos-mv__triangle { justify-self: start; }
.sobrenos-mv__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--color-white);
}
.sobrenos-mv__desc {
  color: rgba(255,255,255,.78);
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 48ch;
}
.sobrenos-mv__text--right { justify-self: end; text-align: left; }

.sobrenos-mv__triangle {
  width: clamp(14rem, 22vw, 22rem);
  max-width: 100%;
  transform: scale(.85) translateY(20px);
  opacity: 0;
  transition:
    opacity .7s cubic-bezier(.2,.7,.25,1),
    transform .7s cubic-bezier(.2,.7,.25,1);
  filter: drop-shadow(0 10px 30px rgba(227,38,28,.25));
}
.sobrenos-mv__triangle svg { width: 100%; height: auto; display: block; }

/* animaes disparadas por JS (IntersectionObserver) */
.sobrenos-mv.is-visible .sobrenos-mv__triangle--down {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition-delay: 0s;
}
.sobrenos-mv.is-visible .sobrenos-mv__triangle--up {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition-delay: .5s;
}

/* --------- Valores (scroll infinito) --------- */
.sobrenos-values__marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: block;
}
.sobrenos-values__marquee::before {
    content: "";
    position: absolute;
    top: 0;
    left: 300px;
    width: clamp(7rem, 28vw, 2.5rem);
    height: 100%;
    background: linear-gradient(to left, transparent 0%, var(--color-white) 90%);
    z-index: 5;
    pointer-events: none;
}


.sobrenos-values__marquee::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: clamp(4rem, 10vw, 9rem);
    height: 100%;
    background: linear-gradient(to left, var(--color-white) 0%, transparent 100%);
    z-index: 5;
    pointer-events: none;
}










.sobrenos-values {
  background: var(--color-white);
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
}
.sobrenos-values__label {
	 position: relative;
    z-index: 10;
  max-width: var(--container-max);
  margin: 0 auto 1.25rem;
  padding-inline: var(--container-pad);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  color: var(--color-dark);
}

.sobrenos-values__track {
  display: inline-flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  white-space: nowrap;
  animation: mgValuesScroll 28s linear infinite;
  will-change: transform;
}
.sobrenos-values__item {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--color-dark);
  letter-spacing: -.01em;
  line-height: 1;
}
.sobrenos-values__sep {
  width: clamp(2.25rem, 4vw, 3.75rem);
  height: auto;
  flex: 0 0 auto;
  opacity: .95;
}
@keyframes mgValuesScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* --------- SAP Partner --------- */
.sobrenos-sap {
  background: var(--color-red);
  color: var(--color-white);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}
.sobrenos-sap__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.pre-title--light {color: var(--color-black) !important;}
.sobrenos-sap__title {
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  margin: .5rem 0 1rem;
}

.sobrenos-team-intro__left .pre-title, .sobrenos-team__head .pre-title{
	color:var(--color-black) !important;
}

.sobrenos-sap__desc {
  color: rgba(255,255,255,.9);
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 55ch;
}
.sobrenos-sap__badge {
  justify-self: end;
  background: var(--color-white);
  border-radius: 1rem;
  padding: 1.25rem 1.75rem;
  box-shadow: 0 20px 40px rgba(0,0,0,.15);
}
.sobrenos-sap__badge img { display: block; max-width: 240px; height: auto; }

/* --------- Equipa intro --------- */
.sobrenos-team-intro {
  background: var(--color-white);
  padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(2rem, 4vw, 3rem);
}
.sobrenos-team-intro__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.sobrenos-team-intro__title {
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  margin: .5rem 0 1rem;
  color: var(--color-dark);
}
.sobrenos-team-intro__desc {
  color: #4a4a4a;
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 52ch;
}
.sobrenos-team-intro__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.sobrenos-team-intro__bullets li {
  position: relative;
  padding-left: 2rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--color-dark);
}
.sobrenos-team-intro__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .4rem;
  width: 14px;
  height: 14px;
  background: var(--color-red);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/* --------- Equipa grid --------- */
.sobrenos-team {
  padding: clamp(1rem, 3vw, 2rem) 0 clamp(4rem, 8vw, 7rem);
}
.sobrenos-team__title {
  font-size: clamp(1.75rem, 2.6vw, 2.25rem);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 2rem;
}
.sobrenos-team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: clamp(1.5rem, 2.5vw, 2rem);
}
.team-card {
  background: var(--color-gray);
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition);
}
.team-card:hover { transform: translateY(-4px); }
.team-card__photo {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: .75rem;
  overflow: hidden;
  background: #e8e8e4;
  margin-bottom: 1rem;
}
.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  transition: filter var(--transition);
}
.team-card:hover .team-card__photo img { filter: grayscale(0%); }
.team-card__li {
  position: absolute;
  bottom: .75rem;
  right: .75rem;
  width: 2.25rem;
  height: 2.25rem;
  background: var(--color-white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--color-red);
  transition: background var(--transition), color var(--transition);
}

.team-card__li img{ width: 1rem; height: 1rem; }
.team-card__name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0 0 .25rem;
}
.team-card__role {
  font-size: .9375rem;
  color: #5a5a5a;
  margin: 0;
}
.team-card--cta {
  background: var(--color-dark);
  color: var(--color-white);
  justify-content: center;
  text-align: left;
  padding: 2rem 1.75rem;
  gap: 1rem;
}
.team-card--cta .team-card__name { color: var(--color-white); font-size: 1.35rem; }
.team-card--cta .team-card__role { color: rgba(255,255,255,.75); }
.team-card--cta .btn { align-self: flex-start; margin-top: .5rem; }

/* --------- Mapa pases --------- */
.sobrenos-map {
  background: var(--color-gray);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.sobrenos-map__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}
.sobrenos-map__title {
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  margin: .5rem 0 1rem;
  color: var(--color-dark);
}
.sobrenos-map__desc {
  color: #4a4a4a;
  font-size: 1.0625rem;
  line-height: 1.6;
}
.sobrenos-map__stage {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.sobrenos-map__svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,.05));
  opacity: .85;
}
.map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: inherit;
  display: block;
  z-index: 2;
  text-decoration: none;
}
.map-pin__dot {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-red);
  box-shadow: 0 0 0 4px rgba(227,38,28,.25);
  transition: transform var(--transition);
  z-index: 2;
}
.map-pin__pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-red);
  opacity: .45;
  transform: translate(-50%, -50%) scale(1);
  z-index: 1;
  animation: mgPinPulse 2.4s ease-out infinite;
}
@keyframes mgPinPulse {
  0%   { transform: translate(-50%, -50%) scale(1);   opacity: .55; }
  70%  { transform: translate(-50%, -50%) scale(3.2); opacity: 0;   }
  100% { transform: translate(-50%, -50%) scale(3.2); opacity: 0;   }
}
.map-pin.is-clicked .map-pin__pulse {
  animation: mgPinClick .8s ease-out 1;
}
@keyframes mgPinClick {
  0%   { transform: translate(-50%, -50%) scale(1);   opacity: .8; }
  100% { transform: translate(-50%, -50%) scale(6);   opacity: 0;  }
}
.map-pin:hover .map-pin__dot { transform: scale(1.25); }
.map-pin__tip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translate(-50%, 6px);
  background: var(--color-red);
  color: var(--color-white);
  padding: .45rem .75rem;
  border-radius: .5rem;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 3;
}
.map-pin__tip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--color-red);
}
.map-pin:hover .map-pin__tip,
.map-pin:focus-visible .map-pin__tip {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* --------- Clientes + testemunho --------- */
.sobrenos-clients {
  background: var(--color-white);
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}
.sobrenos-clients__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.sobrenos-clients__quote {
  position: relative;
  padding: 3rem 3rem 3rem 4rem;
  min-height: 260px;
  isolation: isolate;
}
.sobrenos-clients__arc {
  position: absolute;
  left: -3rem;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  border: 28px solid var(--color-red);
  border-radius: 50%;
  clip-path: inset(0 50% 0 0);
  z-index: -1;
}
.sobrenos-clients__text {
  font-family: var(--font-primary);
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
  line-height: 1.5;
  color: var(--color-dark);
  font-style: italic;
  margin: 0;
  max-width: 40ch;
}
.sobrenos-clients__open {
  color: var(--color-red);
  font-size: 2.5em;
  line-height: 0;
  vertical-align: -.45em;
  margin-right: .1em;
}
.sobrenos-clients__author {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-top: 1rem;
}
.sobrenos-clients__title-wrap { text-align: right; }
.sobrenos-clients__title {
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  margin-top: .5rem;
  color: var(--color-dark);
}

.sobrenos-clients__slider {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.sobrenos-clients__track {
  display: inline-flex;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  animation: mgClientsScroll 36s linear infinite;
  will-change: transform;
  padding-block: 1rem;
}



.sobrenos-clients__slider:hover .sobrenos-clients__track,
.sobrenos-clients__slider:focus-within .sobrenos-clients__track {
  animation-play-state: paused;
}
.sobrenos-clients__slider:hover .client-card:not(:hover) .client-card__logo {
  filter: grayscale(100%);
  opacity: .55;
}
@keyframes mgClientsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.client-card {
  position: relative;
  flex: 0 0 auto;
  width: clamp(180px, 16vw, 220px);
  height: clamp(140px, 14vw, 160px);
  display: grid;
  place-items: center;
  cursor: pointer;
}
.client-card__logo {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 1rem;
  transition: filter var(--transition), opacity var(--transition);
}
.client-card__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  width: auto;
  height: auto;
}
.client-card__logo span {
  font-weight: 700;
  color: var(--color-dark);
  text-align: center;
}

/* Shape vermelho que aparece no hover */
.client-card__shape {
  position: absolute;
  inset: -20% -10%;
  z-index: 1;
  opacity: 0;
  transform: scale(.85);
  transition: opacity .4s ease, transform .4s ease;
  pointer-events: none;
}
.client-card__shape svg {
  width: 100%;
  height: 100%;
  display: block;
}
.client-card__shape-path {
  fill: #E3ABA8;
  transition: fill .4s ease;
}
.client-card__shape-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  padding: 15% 20%;
  opacity: 0;
  transition: opacity .3s ease .1s;
}
.client-card__shape-text strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .35rem;
}
.client-card__shape-text span {
  font-size: .78rem;
  line-height: 1.35;
  opacity: .95;
}
.client-card:hover .client-card__logo {
  filter: grayscale(100%);
  opacity: .15;
}
.client-card:hover .client-card__shape {
  opacity: 1;
  transform: scale(1);
}
.client-card:hover .client-card__shape-path {
  fill: var(--color-red);
}
.client-card:hover .client-card__shape-text {
  opacity: 1;
}

/* --------- Responsive (<=900px) --------- */
@media (max-width: 900px) {
  .sobrenos-hero__inner,
  .sobrenos-mv__row,
  .sobrenos-sap__inner,
  .sobrenos-team-intro__inner,
  .sobrenos-clients__head {
    grid-template-columns: 1fr;
  }
  .sobrenos-mv__row--bottom { grid-template-columns: 1fr; }
  .sobrenos-mv__row--bottom .sobrenos-mv__triangle { justify-self: center; order: 1; }
  .sobrenos-mv__row--bottom .sobrenos-mv__text--right { order: 2; justify-self: start; text-align: left; }
  .sobrenos-mv__row--top .sobrenos-mv__triangle { justify-self: center; }
  .sobrenos-clients__title-wrap { text-align: left; }
  .sobrenos-clients__arc { width: 200px; height: 200px; border-width: 20px; left: -1.5rem; }
  .sobrenos-sap__badge { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  .sobrenos-values__track,
  .sobrenos-clients__track { animation-duration: 120s; }
  .map-pin__pulse { animation: none; opacity: 0; }
}

/* ===================================================================
   SOBRE NOS - HERO full-width com imagem + padrao por cima
   =================================================================== */
.sobrenos-hero {
  position: relative;
  width: 100%;
  min-height: clamp(380px, 45vh, 560px);
  background-color: #222;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  margin-top: 0;
  padding: 0;
}

/* Padrao geral por cima da imagem */
.sobrenos-hero__pattern {
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-repeat: repeat;
  background-size: auto;
  opacity: 0.55;
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* Reset dos estilos antigos do hero (que tinham 2 colunas com foto + logo) */
.sobrenos-hero__inner,
.sobrenos-hero__text,
.sobrenos-hero__media,
.sobrenos-hero__photo,
.sobrenos-hero__title { all: unset; }

.sobrenos-hero { display: block !important; }

/* Logo grande sobreposto entre o hero e o conteudo, alinhado a direita,
   FORA do container, descido -50% do seu tamanho. */
.sobrenos-hero-overlay {
  position: relative;
  width: 100%;
  margin: 0;
  pointer-events: none;
  z-index: 5;
  height: 0; /* o logo sai por cima do conteudo abaixo */
}

.sobrenos-hero-overlay img {
  position: absolute;
  right: 0;
  top: -50%;
  width: clamp(280px, 32%, 520px);
  height: auto;
  display: block;
  transform: translateY(-50%);
  pointer-events: none;
}

/* ===================================================================
   SOBRE NOS - INTRO (pre + titulo + texto + botao a 70%)
   =================================================================== */
.sobrenos-intro {
  background: var(--color-white);
  padding-block: clamp(3rem, 5vw, 5rem) clamp(2rem, 4vw, 3.5rem);
  position: relative;
  z-index: 1;
}

.sobrenos-intro__inner {
  position: relative;
}

.sobrenos-intro__content {
  max-width: 70%;
  width: 100%;
}

.sobrenos-intro__title {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.15;
  font-weight: 600;
  color: var(--color-black);
  margin: 0.5rem 0 1.25rem;
}

.sobrenos-intro__desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-black);
  margin-bottom: 2rem;
  max-width: 760px;
}

.sobrenos-intro__cta { margin-top: 1rem; }

@media (max-width: 900px) {
  .sobrenos-intro__content { max-width: 100%; }
  .sobrenos-hero-overlay img { width: 50%; right: -10%; }
}

/* ===================================================================
   VALORES - titulo a esquerda + marquee atras (sem logos)
   =================================================================== */
.sobrenos-values {
  background: var(--color-black);
  color: var(--color-white);
  padding-block: clamp(3rem, 5vw, 4.5rem);
  overflow: hidden;
  position: relative;
}

.sobrenos-values__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.sobrenos-values__title {
  position: relative;
  z-index: 3;
  flex: 0 0 auto;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
  font-weight: 700;
  color: var(--color-white);
  margin: 0;
  /* Fade horizontal a direita para o marquee se fundir por baixo */
  background: linear-gradient(90deg, var(--color-black) 75%, rgba(0,0,0,0) 100%);
  padding: 0.75rem 4rem 0.75rem 0;
}

.sobrenos-values__marquee {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}

.sobrenos-values__track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: marquee 35s linear infinite;
  padding-left: 2rem;
}

.sobrenos-values__item {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-white);
  white-space: nowrap;
  position: relative;
  padding-right: 4rem;
}

.sobrenos-values__item::after {
  content: "";
  position: absolute;
  right: 1.6rem;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-red);
  transform: translateY(-50%);
}

/* Esconder qualquer separador <img> do markup antigo */
.sobrenos-values__sep { display: none; }

@media (max-width: 700px) {
  .sobrenos-values__title {
    font-size: 1.6rem;
    padding-right: 2rem;
  }
}

/* ===================================================================
   SAP PARTNER - com sobre-logo-overlay sobre o vermelho
   =================================================================== */
.sobrenos-sap {
  position: relative;
  background: var(--color-red);
  color: var(--color-white);
  overflow: hidden;
  padding-block: clamp(3rem, 6vw, 5rem);
  isolation: isolate;
}

.sobrenos-sap__overlay {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(360px, 55%, 760px);
  pointer-events: none;
  opacity: 0.95;
  z-index: 0;
  mix-blend-mode: lighten;
}

.sobrenos-sap__overlay img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0) invert(1) opacity(0.18);
}

.sobrenos-sap__inner {
  position: relative;
  z-index: 1;
}

.sobrenos-sap__title {
  color: var(--color-white);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  margin: 0 0 1rem;
}

.sobrenos-sap__desc {
  color: rgba(255,255,255,0.92);
  max-width: 600px;
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ===================================================================
   EQUIPA - INTRO (pre-bullets + bullets + pos-bullets)
   =================================================================== */
.sobrenos-team-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

@media (max-width: 900px) {
  .sobrenos-team-intro__inner { grid-template-columns: 1fr; }
}

.sobrenos-team-intro__right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sobrenos-team-intro__pre-bullets,
.sobrenos-team-intro__pos-bullets {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-black);
}

.sobrenos-team-intro__pre-bullets p:last-child,
.sobrenos-team-intro__pos-bullets p:last-child { margin-bottom: 0; }

/* Bullets com chevron > a vermelho */
.sobrenos-team-intro__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sobrenos-team-intro__bullets li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-black);
}

.sobrenos-team-intro__bullets li::before {
  content: ">";
  position: absolute;
  left: 0;
  color: var(--color-red);
  font-weight: 700;
}

/* ===================================================================
   EQUIPA - GRID (cards verticais com foto, nome, cargo, linkedin)
   =================================================================== */
.sobrenos-team__head {
  margin-bottom: 1.5rem;
}

.sobrenos-team__head .pre-title { margin-bottom: 0.5rem; }

.sobrenos-team__title {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 700;
  color: var(--color-red);
  margin: 0 0 1.5rem;
}

.sobrenos-team__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1100px) { .sobrenos-team__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .sobrenos-team__grid { grid-template-columns: repeat(2, 1fr); } }

.team-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  border-radius: 0;
  padding: 0;
  overflow: visible;
  box-shadow: none;
  transition: transform var(--transition);
}

.team-card:hover { transform: translateY(-3px); }

.team-card__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 12px;
  background: var(--color-gray);
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(15%);
  transition: filter var(--transition), transform var(--transition);
}

.team-card:hover .team-card__photo img {
  filter: grayscale(0%);
  transform: scale(1.04);
}

.team-card__body {
  padding: 1rem 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  position: relative;
}

.team-card__name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-black);
  margin: 0;
  line-height: 1.2;
}

.team-card__role {
  font-size: 0.85rem;
  color: rgba(0,0,0,0.6);
  margin: 0;
  font-weight: 400;
}

.team-card__li {
  position: absolute;
  right: 0;
  top: 1rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}

.team-card__li img { width: 14px; height: 14px;}
.team-card__li:hover { transform: scale(1.1); }

/* Anula card antigo "team-card--cta" */
.team-card--cta { display: none !important; }

/* ===================================================================
   FAZ PARTE DA EQUIPA - CTA full-width (esquerda titulo+texto, direita texto+btn)
   =================================================================== */
.sobrenos-cv {
  background: var(--color-white);
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.sobrenos-cv__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

@media (max-width: 900px) {
  .sobrenos-cv__inner { grid-template-columns: 1fr; }
}

.sobrenos-cv__left .pre-title { margin-bottom: 0.75rem; }

.sobrenos-cv__title {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 600;
  color: var(--color-black);
  line-height: 1.25;
  margin: 0;
}

.sobrenos-cv__right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.sobrenos-cv__desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-black);
}

.sobrenos-cv__desc p:last-child { margin-bottom: 0; }

.sobrenos-cv__cta { margin-top: 0.5rem; }

/* ===================================================================
   MAPA - PAISES (interativo com tooltip)
   =================================================================== */
.sobrenos-map {
  background: var(--color-white);
  padding-block: clamp(3rem, 5vw, 4.5rem);
}

.sobrenos-map__head {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.sobrenos-map__head .pre-title {margin-bottom: 0.75rem;color: var(--color-black);}

.sobrenos-map__title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--color-red);
  margin: 0 0 1rem;
}

.sobrenos-map__desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-black);
}

.sobrenos-map__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1516 / 575;
  background: transparent;
}

/* Mapa-mundo cinzento escuro */
.sobrenos-map__svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: brightness(0) saturate(100%) invert(35%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(85%);
  opacity: 0.85;
}

/* Pin de pais - bola vermelha com tooltip */
.map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 26px;
  height: 26px;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 5;
  padding: 0;
}

.map-pin__dot {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-red);
  box-shadow: 0 0 0 3px rgba(227,38,28,0.18);
  transition: transform var(--transition), box-shadow var(--transition);
}

.map-pin__pulse {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-red);
  opacity: 0.55;
  animation: map-pulse 2s ease-out infinite;
  pointer-events: none;
}

@keyframes map-pulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  100% { transform: scale(2.6); opacity: 0; }
}

.map-pin:hover .map-pin__dot,
.map-pin:focus-visible .map-pin__dot {
  transform: scale(1.15);
  box-shadow: 0 0 0 6px rgba(227,38,28,0.25);
}

/* Tooltip por defeito (label) - aparece em hover */
.map-pin__tip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(4px);
  background: var(--color-black);
  color: var(--color-white);
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 6;
}

.map-pin__tip::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--color-black);
}

.map-pin:hover .map-pin__tip,
.map-pin:focus-visible .map-pin__tip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.sobrenos-map__tooltip { display: none; }

/* ===================================================================
   CLIENTES - descricao especifica desta pagina
   =================================================================== */
.sobrenos-clients__desc {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-black);
  max-width: 420px;
  margin-left: auto;
}

.sobrenos-clients__desc p:last-child { margin-bottom: 0; }

@media (max-width: 800px) {
  .sobrenos-clients__desc { margin-left: 0; max-width: 100%; }
}

/* ===================================================================
   SOBRE NOS - ajustes finais do template
   =================================================================== */
.sobrenos-page {
  overflow: hidden;
  padding-top: 80px;
}

.sobrenos-page .container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.sobrenos-hero {
  position: relative;
  display: block !important;
  min-height: clamp(390px, 48vw, 740px);
  background-color: #222;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding: 0;
}

.sobrenos-hero__pattern {
  position: absolute;
  background-repeat: repeat;
  background-size: cover;
  z-index: 3;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  opacity: 1;
  inset: initial;
  mix-blend-mode: unset;
  opacity: .20;
}

.sobrenos-hero-overlay {
  position: relative;
  z-index: 5;
  height: 0;
  pointer-events: none;
}

.sobrenos-hero-overlay img {
  position: absolute;
  top: 0;
  right: clamp(-5rem, -3vw, 0rem);
  width: clamp(320px, 34vw, 760px);
  max-width: none;
  transform: translateY(-50%);
}

.sobrenos-intro {
  position: relative;
  z-index: 2;
  background: var(--color-white);
  padding-block: clamp(3.2rem, 5vw, 5.6rem) clamp(3.4rem, 5vw, 5.2rem);
}

.sobrenos-intro__content {
  width: min(70%, 920px);
}

.sobrenos-intro__title {
  max-width: 760px;
  margin: 0.2rem 0 1.05rem;
  color: var(--color-black);
  font-size: clamp(2rem, 3.1vw, 3rem);
  line-height: 1.05;
  font-weight: 500;
}

.sobrenos-intro__desc {
  max-width: 860px;
  color: #111;
  font-size: 0.96rem;
  line-height: 1.62;
}

.sobrenos-mv {
  --sobrenos-mv-diagonal-gap: 40px;
  --sobrenos-mv-diagonal-half-gap: -110px;
  position: relative;
  isolation: isolate;
  min-height: 0px;
  display: flex;
  align-items: center;
  background: var(--color-black);
  color: var(--color-white);
  overflow: hidden;
  padding-block: 0;
  background-image: url(../imgs/fundoBolas.svg);
  background-size: contain;
}

.sobrenos-mv::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../imgs/fundo-noticias-geral.png");
  background-repeat: repeat;
  background-size: min(1400px, 120vw) auto;
  opacity: 0.42;
  pointer-events: none;
  display: none;
}

.sobrenos-mv::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0,0,0,0.42);
  pointer-events: none;
}

.sobrenos-mv__dots {
  display: block;
  position: absolute;
  inset: 0;
  background-image: url('../imgs/fundoBolas.svg');
  background-size: contain;
  background-repeat: repeat;
  background-position: center;
  pointer-events: none;
  opacity: 0;
  z-index: 0;
}

.sobrenos-mv__inner {
  position: relative;
  width: 100%;
  z-index: 1;
  min-height: clamp(470px, 42vw, 660px);
}

.sobrenos-mv__sequence {
  position: relative;
  min-height: inherit;
}

.sobrenos-mv__panel {
    position: absolute;
    width: clamp(520px, 70vw, 1150px);
    aspect-ratio: 1221 / 643;
    pointer-events: none;
}

.sobrenos-mv__panel--missao {
  top: calc(clamp(-5.5rem, -4vw, -1rem) - var(--sobrenos-mv-diagonal-half-gap));
  left: calc(clamp(-20rem, -20vw, -4rem) - var(--sobrenos-mv-diagonal-half-gap));
  margin-top: -45px;
}

.sobrenos-mv__panel--visao {
  right: calc(clamp(-20rem, -18vw, -4rem) - var(--sobrenos-mv-diagonal-half-gap));
  bottom: calc(clamp(-7rem, -5vw, -1.5rem) - var(--sobrenos-mv-diagonal-half-gap));
  margin-bottom: -28px;
}

.sobrenos-mv__shape {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* object-position: bottom; */
  opacity: 0;
  transform: translateY(26px) scale(.96);
  transition: opacity .72s cubic-bezier(.22,.74,.24,1), transform .72s cubic-bezier(.22,.74,.24,1);
}

.sobrenos-mv__row {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  min-height: 230px;
}

.sobrenos-mv__row--bottom {
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  margin-top: clamp(-5rem, -7vw, -3rem);
}

.sobrenos-mv__text {
  position: absolute;
  z-index: 1;
  max-width: 430px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

.sobrenos-mv__panel--missao .sobrenos-mv__text {
      top: 40px;
    left: 33%;
    max-width: 50%;
}

.sobrenos-mv__panel--visao .sobrenos-mv__text {
    right: 27%;
    bottom: 80px;
}

.sobrenos-mv.is-visible .sobrenos-mv__shape,
.sobrenos-mv.is-visible .sobrenos-mv__text {
  opacity: 1;
  transform: translateY(0);
}

/* Triangulos da missao/visao: sem qualquer transparencia no estado final */
.sobrenos-mv.is-visible .sobrenos-mv__shape {
  filter: none;
  mix-blend-mode: normal;
}

.sobrenos-mv.is-visible .sobrenos-mv__panel--missao .sobrenos-mv__shape {
  transition-delay: 0s;
  object-position: top;
}

.sobrenos-mv.is-visible .sobrenos-mv__panel--missao .sobrenos-mv__text {
  transition-delay: .32s;
}

.sobrenos-mv.is-visible .sobrenos-mv__panel--visao .sobrenos-mv__shape {
  transition-delay: .72s;
  object-position: bottom;
  /* bottom: 30px; */
}

.sobrenos-mv.is-visible .sobrenos-mv__panel--visao .sobrenos-mv__text {
  transition-delay: 1.05s;
}

.sobrenos-mv__title {
    margin: 0 0 0.9rem;
    color: var(--color-white);
    font-size: clamp(2.1rem, 1.4vw, 3rem);
    line-height: 1.04;
    font-weight: 500;
}

.sobrenos-mv__desc {
  max-width: 38ch;
  color: var(--color-white);
  font-size: 0.85rem;
  line-height: 1.6;
}

.sobrenos-mv__triangle {
  width: clamp(270px, 35vw, 610px);
  max-width: none;
  filter: none;
}

.sobrenos-mv__row--top .sobrenos-mv__triangle {
  justify-self: start;
  transform: translate(-18%, -12%) rotate(0deg) scale(.82);
}

.sobrenos-mv__row--bottom .sobrenos-mv__triangle {
  justify-self: end;
  transform: translate(18%, 10%) rotate(0deg) scale(.82);
}

.sobrenos-mv.is-visible .sobrenos-mv__triangle--down {
  transform: translate(-18%, -12%) scale(1);
}

.sobrenos-mv.is-visible .sobrenos-mv__triangle--up {
  transform: translate(18%, 10%) scale(1);
}

.sobrenos-values {
  position: relative;
  overflow: hidden;
  background: var(--color-white);
  color: var(--color-black);
  padding-block: clamp(3rem, 4.6vw, 5rem);
}

.sobrenos-values__inner {
  position: relative;
  min-height: 88px;
  display: flex;
  align-items: center;
}

.sobrenos-values__title {
  position: relative;
  z-index: 3;
  flex: 0 0 245px;
  margin: 0;
  padding: 0.35rem 2.2rem 0.35rem 0;
  background: var(--color-white);
  color: var(--color-red);
  font-size: clamp(1.4rem, 1.75vw, 2rem);
  line-height: 0.98;
  font-weight: 500;
}

.sobrenos-values__title::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0.2rem;
  bottom: 0.2rem;
  width: 1px;
  background: #bdbdbd;
}

.sobrenos-values__marquee {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.sobrenos-values__track {
  display: flex;
  align-items: center;
  gap: clamp(3.4rem, 3vw, 7rem);
  width: max-content;
  padding-left: 300px;
  animation: mgSobreValuesScroll 34s linear infinite;
  will-change: transform;
}

.sobrenos-values__item {
  color: #1f1f1f;
  font-size: clamp(1.2rem, 1.6vw, 1.8rem);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  opacity: 0.96;
}

.sobrenos-values__item:nth-child(3n+1) {
  /* color: #a7a7a7; */
}

.sobrenos-values__item::after,
.sobrenos-values__sep {
  display: none !important;
}

@keyframes mgSobreValuesScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-33.333%); }
}

.sobrenos-sap {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--color-red);
  color: var(--color-white);
  padding-block: clamp(4.2rem, 6.4vw, 7rem);
}

.sobrenos-sap__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  transform: none;
  opacity: 1;
  mix-blend-mode: normal;
}

.sobrenos-sap__overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  opacity: .22;
  filter: invert(1);
}

.sobrenos-sap__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.8fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.sobrenos-sap__title {
  max-width: 720px;
  margin: 0 0 1rem;
  color: var(--color-white);
  font-size: clamp(2rem, 2.9vw, 3.2rem);
  line-height: 1.05;
  font-weight: 500;
}

.sobrenos-sap__desc {
  max-width: 620px;
  color: rgba(255,255,255,.9);
  font-size: .95rem;
  line-height: 1.62;
}

.sobrenos-sap__badge {
  justify-self: center;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.sobrenos-sap__badge img {
  max-width: clamp(180px, 16vw, 290px);
}

.sobrenos-team-intro {
  background: var(--color-white);
  padding-block: clamp(4.8rem, 7vw, 7.5rem) clamp(2.5rem, 3.8vw, 4.5rem);
}

.sobrenos-team-intro__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(3rem, 7vw, 7.5rem);
  align-items: start;
}

.sobrenos-team-intro__title {
  margin: .25rem 0 1.1rem;
  color: var(--color-red);
  font-size: clamp(2rem, 2.8vw, 3rem);
  line-height: 1.05;
  font-weight: 500;
}

.sobrenos-team-intro__desc,
.sobrenos-team-intro__pre-bullets,
.sobrenos-team-intro__pos-bullets,
.sobrenos-team-intro__bullets li {
  color: #111;
  font-size: .95rem;
  line-height: 1.58;
}

.sobrenos-team-intro__right {
  display: none;
}

.sobrenos-team-intro__bullets {
  gap: .35rem;
}

.sobrenos-team-intro__bullets li {
  padding-left: 1.1rem;
  font-weight: 400;
}

.sobrenos-team-intro__bullets li::before {
  content: ">";
  top: 0;
  width: auto;
  height: auto;
  background: none;
  clip-path: none;
  color: var(--color-black);
  font-weight: 400;
}

.sobrenos-team {
  background: var(--color-white);
  padding-block: 0 clamp(5rem, 7vw, 7.5rem);
}

.sobrenos-team__head {
  margin-bottom: 1.55rem;
}

.sobrenos-team__title {
  margin: .15rem 0 0;
  color: var(--color-black);
  font-size: clamp(1.45rem, 1.9vw, 2.2rem);
  line-height: 1.15;
  font-weight: 500;
}

.sobrenos-team__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(1rem, 1.6vw, 1.6rem);
}

.team-card {
  display: block;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  overflow: visible;
}

.team-card__photo {
  width: 100%;
  aspect-ratio: 2 / 2;
  overflow: hidden;
  border-radius: 5px;
  background: #e9e9e6;
  margin: 0;
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.team-card:hover .team-card__photo img {
  transform: none;
  filter: none;
}

.team-card__body {
  position: relative;
  min-height: 42px;
  padding: .78rem 2rem 0 0;
  display: block;
}

.team-card__name {
  margin: 0 0 .12rem;
  color: var(--color-black);
  font-size: .86rem;
  line-height: 1.22;
  font-weight: 500;
}

.team-card__role {
  margin: 0;
  color: var(--color-red);
  font-size: .72rem;
  line-height: 1.3;
  font-weight: 500;
}

.team-card__li {
  position: absolute;
  top: .82rem;
  right: 0;
  width: 17px;
  height: 17px;
  border-radius: 0;
}

.sobrenos-cv {
  background: var(--color-white);
  padding-block: clamp(2.5rem, 5vw, 5rem) clamp(5rem, 7vw, 7.5rem);
}

.sobrenos-cv__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.sobrenos-cv__title {
  max-width: 635px;
  margin: 0;
  color: var(--color-black);
  font-size: clamp(1.45rem, 1.34vw, 2.3rem);
  line-height: 1.16;
  font-weight: 500;
}

.sobrenos-cv__left-desc,
.sobrenos-cv__desc {
  color: #111;
  font-size: .95rem;
  line-height: 1.6;
}

.sobrenos-cv__left-desc {
  max-width: 560px;
  margin-top: 1.1rem;
}

.sobrenos-cv__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.15rem;
  padding-top: clamp(1.8rem, 3vw, 2.6rem);
}

.sobrenos-map {
  position: relative;
  isolation: isolate;
  background: #eeeeec;
  overflow: visible;
  padding-block: clamp(4.5rem, 7vw, 7rem) clamp(3.4rem, 5.5vw, 5.8rem);
  z-index: 1;
}

.sobrenos-map::after {
  display: none;
}

.sobrenos-map__inner {
  position: relative;
  z-index: 1;
}

.sobrenos-map__head {
  max-width: 680px;
  margin: 0 0 clamp(2rem, 4vw, 4rem);
  text-align: left;
}

.sobrenos-map__title {
  max-width: 500px;
  margin: .3rem 0 1rem;
  color: var(--color-red);
  font-size: clamp(2.1rem, 2.8vw, 3.6rem);
  line-height: 1.02;
  font-weight: 500;
}

.sobrenos-map__desc {
  max-width: 680px;
  color: #222;
  font-size: .95rem;
  line-height: 1.58;
}

.sobrenos-map__stage {
  position: relative;
  width: min(100%, 1280px);
  margin-inline: auto;
  aspect-ratio: 1516 / 575;
  margin-left: -130px;
}

.sobrenos-map__svg,
.sobrenos-map__countries {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.sobrenos-map__svg {
  filter: none;
  opacity: 1;
}

.sobrenos-map__countries {
  z-index: 2;
  overflow: visible;
}

.map-country {
  fill: var(--color-red);
  stroke: none;
  stroke-width: 0;
  vector-effect: non-scaling-stroke;
  cursor: pointer;
  transition: fill var(--transition), opacity var(--transition), transform var(--transition);
  transform-box: fill-box;
  transform-origin: center;
  outline: none;
}

.map-country:hover,
.map-country:focus-visible {
  fill: #b9140d;
  opacity: 1;
  transform: scale(1.035);
}

.sobrenos-map__tooltip {
  position: absolute;
  z-index: 8;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  min-height: 180px;
  transform: translate(-50%, calc(-100% - 14px));
  padding: 2.45rem 2.1rem 2.7rem 1.5rem;
  background: url("../imgs/hover-pais.svg") center / contain no-repeat;
  color: var(--color-white);
  max-width: min(180px, 72vw);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.28;
  white-space: normal;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, visibility .18s ease;
}

.sobrenos-map__tooltip::after {
  display: none;
}

.sobrenos-map__tooltip.is-visible {
  opacity: 1;
  visibility: visible;
}

.map-pin {
  display: none !important;
}

.sobrenos-map__client-shape {
  position: absolute;
  right: clamp(-13rem, 2vw, -0.13rem);
  bottom: 0;
  z-index: 5;
  width: min(50vw, 760px);
  min-width: 420px;
  aspect-ratio: 1;
  pointer-events: none;
  transform: translateY(50%);
}


.sobrenos-map__client-shape-bg,
.sobrenos-map__client-shape-fill {
  position: absolute;
  inset: 0;
  display: block;
  background: #E3ABA8;
  -webkit-mask: url("../imgs/client-shape.svg") center / contain no-repeat;
  mask: url("../imgs/client-shape.svg") center / contain no-repeat;
}

/* .sobrenos-map__client-shape-fill {
  background: var(--color-red);
  clip-path: inset(100% 0 0 0);
  transition: clip-path .72s cubic-bezier(.22,.74,.24,1);
} */

@property --fill-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.sobrenos-map__client-shape-fill {
  --fill-angle: 0deg;

  background: conic-gradient(
    from 180deg,
    transparent 0deg calc(360deg - var(--fill-angle)),
    var(--color-red) calc(360deg - var(--fill-angle)) 360deg
  );

  transition: --fill-angle 1.10s cubic-bezier(.22,.74,.24,1);
}





.sobrenos-map__client-shape-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 31% 28% 25%;
  color: var(--color-white);
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .24s ease .18s, transform .24s ease .18s;
}

.sobrenos-map__client-shape-content span {
  max-width: 19ch;
  font-size: clamp(.66rem, 0.82vw, .88rem);
  line-height: 1.3;
  color: var(--color-black);
}

/* .sobrenos-map__client-shape.is-active .sobrenos-map__client-shape-fill {
  clip-path: inset(0 0 0 0);
} */

.sobrenos-map__client-shape.is-active .sobrenos-map__client-shape-fill {
  --fill-angle: 270deg;
}

.sobrenos-map__client-shape.is-active.has-desc .sobrenos-map__client-shape-content {
  opacity: 1;
  transform: translateY(0);
}

.sobrenos-clients {
  position: relative;
  background: var(--color-white);
  padding-block: clamp(4rem, 6vw, 6.5rem) clamp(3rem, 5vw, 5.5rem);
  overflow: hidden;
  z-index: 0;
  padding-bottom: 0px;
}

.sobrenos-clients__slider {
  position: relative;
  z-index: 0;
}

.sobrenos-clients__head {
  display: block;
  margin-bottom: 10px;
}

.sobrenos-clients__quote {
  display: none;
}

.sobrenos-clients__title-wrap {
  max-width: 680px;
  text-align: left;
}
.sobrenos-clients__title-wrap .pre-title{
  color: var(--color-dark);
}

.sobrenos-clients__title {
  margin: .3rem 0 .7rem;
  color: var(--color-red);
  font-size: clamp(2rem, 2.8vw, 3.3rem);
  line-height: 1.04;
  font-weight: 500;
}

.sobrenos-clients__desc {
  max-width: 560px;
  margin: 0;
  color: #222;
  font-size: .95rem;
  line-height: 1.58;
}

.sobrenos-clients__slider {
  overflow: hidden;
  mask-image: none;
  -webkit-mask-image: none;
  margin-right: clamp(60px, 10vw, 160px);
}

.sobrenos-clients__track {
  gap: clamp(2.5rem, 4.5vw, 5.5rem);
  animation: mgClientsScroll 42s linear infinite;
}

.client-card {
  width: clamp(120px, 10vw, 190px);
  height: clamp(72px, 6.4vw, 110px);
  overflow: visible;
}

.client-card__shape {
  display: none !important;
}

.client-card__shape-bg,
.client-card__shape-fill {
  position: absolute;
  inset: 0;
  display: block;
  background: #E3ABA8;
  -webkit-mask: url("../imgs/client-shape.svg") center / contain no-repeat;
  mask: url("../imgs/client-shape.svg") center / contain no-repeat;
}

.client-card__shape-fill {
  background: var(--color-red);
  clip-path: inset(100% 0 0 0);
  transition: clip-path .65s cubic-bezier(.22,.74,.24,1);
}

.client-card__shape svg,
.client-card__shape-path {
  display: none;
}

.client-card__shape-text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: 26% 24% 22%;
  text-align: center;
  color: var(--color-white);
  opacity: 0;
  transition: opacity .24s ease .18s;
}

.client-card__shape-logo {
  display: grid;
  place-items: center;
  width: min(56%, 92px);
  min-height: 34px;
  margin-bottom: .2rem;
  padding: .32rem .45rem;
  border-radius: 5px;
  background: rgba(255,255,255,.94);
}

.client-card__shape-logo img {
  max-width: 100%;
  max-height: 38px;
  object-fit: contain;
}

.client-card__shape-text strong {
  font-size: .82rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.client-card__shape-text span:not(.client-card__shape-logo) {
  max-width: 15ch;
  font-size: clamp(.62rem, .63vw, .74rem);
  line-height: 1.25;
  opacity: .96;
}

.sobrenos-clients__slider:hover .client-card__logo,
.sobrenos-clients__slider:focus-within .client-card__logo {
  filter: none;
  opacity: 1;
}

.sobrenos-clients__slider:hover .client-card:not(:hover) .client-card__logo,
.sobrenos-clients__slider:focus-within .client-card:not(:focus-within) .client-card__logo {
  filter: none;
  opacity: 1;
}

.client-card:hover .client-card__logo,
.client-card:focus-visible .client-card__logo,
.client-card:focus-within .client-card__logo {
  filter: grayscale(100%);
  opacity: 1;
}

@media (max-width:1500px){
	.site-footer__content {
    display: flex;
    gap: 3rem;
}
}

@media (max-width: 1100px) {
  .sobrenos-team__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .sobrenos-page {
    padding-top: 72px;
  }

  .sobrenos-hero {
    min-height: clamp(300px, 64vw, 520px);
  }

  .sobrenos-hero-overlay img {
    right: -18vw;
    width: min(78vw, 430px);
    opacity: .95;
  }

  .sobrenos-intro__content {
    width: 100%;
    padding-right: min(28vw, 8rem);
  }

  .sobrenos-mv__row,
  .sobrenos-mv__row--bottom,
  .sobrenos-sap__inner,
  .sobrenos-team-intro__inner,
  .sobrenos-cv__inner {
    grid-template-columns: 1fr;
  }

  .sobrenos-mv {
    min-height: auto;
    padding-block: 0;
  }

  .sobrenos-mv__inner,
  .sobrenos-mv__sequence {
    min-height: auto;
    background: var(--color-red);
  }

  .sobrenos-mv__sequence {
    display: flex;
    gap: 0px;
    flex-direction: column;
  }

  .sobrenos-mv__panel,
  .sobrenos-mv__panel--missao,
  .sobrenos-mv__panel--visao {
    position: relative;
    inset: auto;
    width: min(112vw, 680px);
  }

  .sobrenos-mv__panel--missao {
    justify-self: start;
    margin-left: -20vw;
    top: 40px;
  }

  .sobrenos-mv__panel--visao {
    justify-self: end;
    margin-right: -20vw;
  }

  .sobrenos-mv__panel--missao .sobrenos-mv__text {
    top: 13%;
    left: 30%;
    right: 8%;
  }

  .sobrenos-mv__panel--visao .sobrenos-mv__text {
    right: 20%;
    bottom: 18%;
    left: 16%;
  }

  .sobrenos-mv__title {
    font-size: clamp(1.65rem, 8vw, 2.35rem);
  }

  .sobrenos-mv__desc {
    font-size: .88rem;
  }

  .sobrenos-mv__row--bottom {
    margin-top: 0;
  }

  .sobrenos-mv__row--bottom .sobrenos-mv__triangle {
    order: 1;
  }

  .sobrenos-mv__row--bottom .sobrenos-mv__text {
    order: 2;
  }

  .sobrenos-mv__triangle,
  .sobrenos-mv__row--top .sobrenos-mv__triangle,
  .sobrenos-mv__row--bottom .sobrenos-mv__triangle,
  .sobrenos-mv.is-visible .sobrenos-mv__triangle--down,
  .sobrenos-mv.is-visible .sobrenos-mv__triangle--up {
    justify-self: center;
    transform: none;
    width: min(80vw, 360px);
  }

  .sobrenos-values__title {
    flex-basis: 175px;
    padding-right: 1.3rem;
  }

  .sobrenos-values__track {
    padding-left: 210px;
    gap: 2.6rem;
  }

  .sobrenos-sap__badge {
    justify-self: start;
  }

  .sobrenos-map__stage {
    width: 1120px;
    max-width: none;
    transform: translateX(-22%);
  }

  .sobrenos-map__client-shape {
display:none;
  }
	
	.sobrenos-clients__slider:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0px;
    width: clamp(7rem, 28vw, 2.5rem);
    height: 100%;
    background: linear-gradient(to right, transparent 0%, var(--color-white) 90%);
    z-index: 5;
    pointer-events: none;
}
}

@media (max-width: 680px) {
  .sobrenos-intro__content {
    padding-right: 0;
  }

  .sobrenos-mv__panel,
  .sobrenos-mv__panel--missao,
  .sobrenos-mv__panel--visao {
    width: min(150vw, 620px);
  }

  .sobrenos-mv__panel--missao {
    margin-left: -34vw;
  }

  .sobrenos-mv__panel--visao {
    margin-right: -34vw;
    bottom: 50px;
  }

  .sobrenos-mv__panel--missao .sobrenos-mv__text {
    left: 24%;
    right: 7%;
    max-width: 60%;
  }

  .sobrenos-mv__panel--visao .sobrenos-mv__text {
    left: 22%;
    right: 30%;
  }

  .sobrenos-team__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sobrenos-map__stage {
    width: 900px;
    transform: none;
    margin-top: 70px;
    max-width: 100%;
  }

  .sobrenos-map__client-shape {
    right: -5rem;
    bottom: 0;
    width: 360px;
    min-width: 260px;
    display: none;
  }

  .sobrenos-map__client-shape-content {
    padding: 31% 29% 25%;
  }

  .sobrenos-map__tooltip {
    width: 150px;
    min-height: 150px;
    max-width: 150px;
    padding: 2.1rem 1.75rem 2.35rem;
    font-size: .66rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sobrenos-values__track,
  .sobrenos-clients__track {
    animation-duration: 120s;
  }
}

/* ===================================================================
   RESPONSIVE FINISHING PASS
   =================================================================== */
@media (max-width: 1300px) {
  .site-footer__main{
    gap: 0rem;
}
}

@media (max-width:1410px) and (min-width:1290px){
	.hero__desc{
		width:80%;
		max-width:100%;
	}
}



@media (max-width:1289px) and (min-width:1025px){
	 .hero {
    min-height: 0;
    height: auto;
    padding-top: 82px;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--color-white);
  }

  .hero__chevrons,
  .hero__vline {
    display: none;
  }

  .hero__illustration {
    order: 1;
    position: relative;
    inset: auto;
    transform: none;
    width: 100%;
    max-width: none;
    height: clamp(290px, 58vw, 520px);
    max-height: none;
    margin: 0;
    padding: 0;
  }

  .hero__illustration-img {
    object-position: center;
  }

  .hero__content {
    order: 2;
    position: relative;
    z-index: 5;
    display: block;
    height: auto;
    padding: clamp(2rem, 6vw, 3.25rem) 0;
    background: var(--color-red);
    pointer-events: auto;
  }

  .hero__content .container {
    max-width: var(--container-max);
    padding-inline: var(--container-pad);
  }

  .hero__slide {
    display: none;
    position: relative;
    top: auto;
    left: auto;
    max-width: 680px;
    padding-inline: 0;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .hero__slide.is-active {
    display: block;
  }
	
	 .hero + .section-sobre {
    margin-top: 0;
    padding-top: var(--section-py);
  }

  .hero + .section-sobre .section-sobre__inner {
    grid-template-columns: 1fr;
  }

  .hero + .section-sobre .section-sobre__content {
    margin-left: 0;
    max-width: 720px;
  }

  .contactos-hero {
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: visible;
    background: var(--color-white);
  }

  .contactos-hero__overlay {
    order: 1;
    position: relative;
    inset: auto;
    width: 100%;
    background: var(--color-red);
    pointer-events: auto;
  }

  .contactos-hero__overlay::before,
  .contactos-hero__shape {
    display: none;
  }

  .contactos-hero__content {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    max-width: var(--container-max);
    width: 100%;
    min-height: 0;
    padding: calc(5.5rem + env(safe-area-inset-top)) var(--container-pad) clamp(2.25rem, 6vw, 3.5rem);
    margin-inline: auto;
    color: var(--color-white);
  }

  .contactos-hero__content > * {
    max-width: 680px;
  }

  .contactos-hero__pre {
    color: var(--color-black);
  }

  .contactos-hero__cta .btn {
    padding: 0;
    background: transparent;
    color: var(--color-white);
    border-radius: 0;
  }

  .contactos-hero__cta .btn__arrow {
    display: none;
  }

  .contactos-hero__map {
    order: 2;
    position: relative;
    inset: auto;
    width: 100%;
    height: clamp(320px, 58vw, 520px);
    min-height: 320px;
    z-index: 1;
  }

  .contactos-form-section {
    padding-block: var(--section-py);
  }
}



@media (max-width: 1024px) {
  :root {
    --container-pad: clamp(1.25rem, 5vw, 2.5rem);
    --section-py: clamp(3.5rem, 8vw, 5rem);
  }

  .site-header {
    padding: .95rem 0;
    background: var(--color-white);
    box-shadow: 0 1px 0 rgba(0,0,0,.06);
  }

  .site-header__inner {
    align-items: center;
  }

  .site-header__toggle.is-open {
    position: fixed;
    top: max(1rem, env(safe-area-inset-top));
    right: max(1rem, env(safe-area-inset-right));
    z-index: 1002;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 0;
    border-radius: 50%;
    background: rgba(0,0,0,.16);
  }

  .site-header__toggle.is-open span {
    position: absolute;
    width: 22px;
    background: var(--color-white);
  }

  .site-header__toggle.is-open span:nth-child(1) {
    transform: rotate(45deg);
  }

  .site-header__toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .site-header__toggle.is-open span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .site-mobile-nav {
    width: min(390px, 100vw);
    padding: calc(5rem + env(safe-area-inset-top)) var(--container-pad) 2.5rem;
  }

  .site-mobile-nav__list a:hover {
    color: var(--color-white);
    opacity: .72;
  }

  .hero {
    min-height: 0;
    height: auto;
    padding-top: 82px;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--color-white);
  }

  .hero__chevrons,
  .hero__vline {
    display: none;
  }

  .hero__illustration {
    order: 1;
    position: relative;
    inset: auto;
    transform: none;
    width: 100%;
    max-width: none;
    height: clamp(290px, 58vw, 520px);
    max-height: none;
    margin: 0;
    padding: 0;
  }

  .hero__illustration-img {
    object-position: center;
  }

  .hero__content {
    order: 2;
    position: relative;
    z-index: 5;
    display: block;
    height: auto;
    padding: clamp(2rem, 6vw, 3.25rem) 0;
    background: var(--color-red);
    pointer-events: auto;
  }

  .hero__content .container {
    max-width: var(--container-max);
    padding-inline: var(--container-pad);
  }

  .hero__slide {
    display: none;
    position: relative;
    top: auto;
    left: auto;
    max-width: 680px;
    padding-inline: 0;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .hero__slide.is-active {
    display: block;
  }

  .hero__subtitle,
  .hero__title,
  .hero__desc,
  .hero__cta {
    opacity: 1;
    transform: none;
  }

  .hero__subtitle {
    color: var(--color-black);
  }

  .hero__title {
    max-width: 12ch;
    color: var(--color-white);
    font-size: clamp(2.25rem, 9vw, 3.7rem);
  }

  .hero__desc {
    color: rgba(255,255,255,.92);
  }

  .hero + .section-sobre {
    margin-top: 0;
    padding-top: var(--section-py);
  }

  .hero + .section-sobre .section-sobre__inner {
    grid-template-columns: 1fr;
  }

  .hero + .section-sobre .section-sobre__content {
    margin-left: 0;
    max-width: 720px;
  }

  .contactos-hero {
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: visible;
    background: var(--color-white);
  }

  .contactos-hero__overlay {
    order: 1;
    position: relative;
    inset: auto;
    width: 100%;
    background: var(--color-red);
    pointer-events: auto;
  }

  .contactos-hero__overlay::before,
  .contactos-hero__shape {
    display: none;
  }

  .contactos-hero__content {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    max-width: var(--container-max);
    width: 100%;
    min-height: 0;
    padding: calc(5.5rem + env(safe-area-inset-top)) var(--container-pad) clamp(2.25rem, 6vw, 3.5rem);
    margin-inline: auto;
    color: var(--color-white);
  }

  .contactos-hero__content > * {
    max-width: 680px;
  }

  .contactos-hero__pre {
    color: var(--color-black);
  }

  .contactos-hero__cta .btn {
    padding: 0;
    background: transparent;
    color: var(--color-white);
    border-radius: 0;
  }

  .contactos-hero__cta .btn__arrow {
    display: none;
  }

  .contactos-hero__map {
    order: 2;
    position: relative;
    inset: auto;
    width: 100%;
    height: clamp(320px, 58vw, 520px);
    min-height: 320px;
    z-index: 1;
  }

  .contactos-form-section {
    padding-block: var(--section-py);
  }

  .contactos-form-section__inner {
    grid-template-columns: 1fr;
  }

  .section-clientes {
    padding-bottom: 0px;
  }

  .section-clientes__head {
    width: 100%;
    margin-right: 0;
    margin-bottom: 2.25rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .section-clientes__intro,
  .section-clientes__desc {
    max-width: 100%;
  }

  .section-clientes__cta {
    margin-right: 0;
  }

  .section-clientes__track-wrap {
    width: 100%;
    max-width: none;
  }

  .section-clientes--inline .section-clientes__head {
    width: 100%;
    margin-bottom: 0;
    background: var(--color-white);
    align-items: flex-start;
  }

  .section-clientes--inline .section-clientes__intro {
    max-width: 100%;
    padding-right: 0;
    border-right: 0;
    background: var(--color-white);
  }

  .section-clientes--inline .section-clientes__track-wrap {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: none;
    margin-top: 2rem;
  }

  .section-clientes__track {
    gap: clamp(2rem, 8vw, 3rem);
  }

  .sobrenos-clients__head {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .sobrenos-clients__title-wrap {
    text-align: left;
  }

  .sobrenos-clients__slider {
    width: 100%;
    margin-top: 2rem;
  }

  .site-footer__main {
    gap: 3rem;
  }

  .site-footer__content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem clamp(2rem, 8vw, 4rem);
    align-items: start;
  }

  .site-footer__contact {
    grid-column: 1 / -1;
  }

  .site-footer__nav {
    grid-column: 1;
  }

  .site-footer__badge {
    grid-column: 2;
    justify-content: flex-start;
    padding-top: .25rem;
  }
  .servico-block__head-right {
    max-width: 100%;
}
  .servico-card--promo .servico-card__title {
    font-size: 2.5rem;
}
  .servico-card--promo {
    min-height: 300px;
}

.sobrenos-map__stage{
  margin-left: 0px;
}

}


@media (max-width:1524px){
	.section-clientes__intro,
  .section-clientes__desc {
    max-width: 100%;
  }
.section-clientes--inline .section-clientes__intro {
    max-width: 100%;
    padding-right: 0;
    border-right: 0;
    background: var(--color-white);
}
	
	.section-clientes--inline .section-clientes__head {
    width: 100%;
    margin-bottom: 0;
    background: var(--color-white);
    align-items: flex-start;
}
	
	.section-clientes__track {
    gap: clamp(2rem, 8vw, 3rem);
}
	
	.section-clientes--inline .section-clientes__track-wrap {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: none;
    margin-top: 2rem;
}
}

@media (max-width: 640px) {
  :root {
    --container-pad: 1.25rem;
  }

  .site-logo__img {
    max-width: 180px;
  }

  .hero {
    padding-top: 74px;
  }

  .hero__illustration {
    height: clamp(60vh, 70vw, 520px) !important;
    /* display: none; */
    margin-top: -60px !important;
    /* margin-bottom: 210px !important; */
  }

  .hero__content {
    padding-block: 50px 50px;
  }

  .contactos-hero__content {
    padding-top: calc(5rem + env(safe-area-inset-top));
  }

  .contactos-hero__info {
    gap: .85rem;
  }

  .contactos-hero__info-item {
    width: 100%;
    padding: .95rem 1rem;
    background: rgba(0,0,0,.12);
    border-radius: 0;
  }

  .section-clientes__track-wrap::before,
  .section-clientes__track-wrap::after {
    display: none;
  }

  .sobrenos-clients__slider {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .site-footer__content {
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 1.25rem;
  }

  .site-footer__badge img {
    max-width: 96px;
  }

  .site-footer__bottom {
    align-items: flex-start;
  }
  .section-sobre__content p {
      font-size: 0.9rem;
      line-height: 1.4;
      font-weight: 400;
  }
  .counter-item {
    width: 100%;
    justify-content: center;
  }
  .counter-item__number{
    width: 30%;
    text-align: right;
  }
  .counter-item__label{
    width: 70%;
    text-align: left;
    padding-left: 1rem;
  }
  .sobrenos-values__inner {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    align-content: flex-start;
  }
  .sobrenos-values__title {        flex-basis: inherit;
        padding-right: 1.3rem;
        flex: none;
    }
  .sobrenos-values__marquee{

    position: relative;
  }
  .sobrenos-values__title:after{
    display: none;
  }
  .sobrenos-values__marquee {
    overflow: hidden;
    mask-image: none;
    -webkit-mask-image: none;
  }
  .sobrenos-values__track {
        padding-left: 20px;
        gap: 0.6rem;
  }
  .noticia-body__sidebar{
    margin-top: 40px;
  }
  .archive-servicos-hero {
      background: var(--color-red);
      padding-top: 0px;
  }
  .servico-card-info {
      margin-top: 50px;
  }
  .servico-block__cards {
      margin-top: 30px;
  }
}

/* ===================================================================
   SOBRE NOS - WORLDWIDE: header em 2 colunas (texto | contadores)
   =================================================================== */
.sobrenos-map__head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 100%;
}

.sobrenos-map__head-text {
  max-width: 720px;
}

.sobrenos-map__counters {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-self: center;
}

.sobrenos-counter {
  display: grid;
  grid-template-columns: 1fr minmax(190px, auto);
  align-items: center;
  gap: clamp(1rem, 2vw, 1.75rem);
  padding-left: 0;
  position: relative;
  text-align: right;
  justify-content: end;
}

.sobrenos-counter__number {
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 700;
  color: var(--color-red);
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-end;
}

.sobrenos-counter__prefix {
  display: inline-block;
}

.sobrenos-counter__label {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-black);
  padding-left: clamp(1rem, 2vw, 1.5rem);
  border-left: 1px solid rgba(0, 0, 0, 0.25);
  align-self: stretch;
  display: flex;
  text-align: -webkit-auto;
  align-items: center;
  justify-content: flex-start;
}

/* Responsive */
@media (max-width: 1024px) {
  .sobrenos-map__head {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .sobrenos-map__counters {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem 2rem;
  }
  .sobrenos-counter {
    flex: 1 1 220px;
    min-width: 200px;
  }
}

@media (max-width: 600px) {
  .sobrenos-map__counters { flex-direction: column; gap: 1.25rem; }
  .sobrenos-counter {
    grid-template-columns: minmax(90px, auto) 1fr;
    gap: 1rem;
    flex: 1 1 40px;
    min-width: 160px;
  }
  .sobrenos-counter__number { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .sobrenos-counter__label { font-size: 0.88rem; padding-left: 1rem; }
}


@media (max-width:1449px){
	.section-clientes__shape{
		display:none;
	}
	.page-id-198 .site .page-content, .page-id-196 .site .page-content {
    max-width: 100% !important;
}
	
	.disc {
    list-style: disc;
    margin-bottom: 20px !important;
    padding-left: 20px;
}
	.page-id-198 .site .page-content h2, .page-id-196 .site .page-content h2 {
    line-height:30px;
		margin-bottom:20px;
}
	
}






a:active,a:focus{
	box-shadow:none !important;
	border:none !important;
}

.mg-map-popup-marker {
  width: 240px;
  height: 240px;

  transform: translate(-50%, -70%) scale(0.7);
  opacity: 0;

  border-radius: 50%;
  overflow: hidden;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);

  transition: 
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.25s ease;

  z-index: 999;
}

.mg-map-popup-marker.is-visible {
  transform: translate(-50%, -70%) scale(1);
  opacity: 1;
}

.mg-map-popup-marker__photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}

.mg-map-popup-marker__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}







@media only screen and (max-width: 1750px) {
	.section-clientes__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* gap: 3rem; */
    margin-right: -10px;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
    flex-direction: row;
}
	
	.contactos-hero__content {
    position: absolute;
    z-index: 3;
    pointer-events: auto;
    top: 55%;
    left: 25%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: calc(var(--container-max) / 2);
    color: #fff;
    height: auto;
    display: flex;
    flex-direction: column;
    padding-inline: var(--container-pad);
    align-items: flex-start;
		margin-inline:auto;
}
	
.postid-82 .servico-hero__content {
    position: relative;
    z-index: 3;
    pointer-events: auto;
    padding-top: calc(var(--header-height, 90px) + 5rem);
    padding-left: clamp(1.5rem, 5vw, 5rem);
    padding-right: 2rem;
    padding-bottom: 3rem;
    max-width: clamp(320px, 40%, 580px);
    width: 100%;
    color: #fff;
}
	
	.sobrenos-mv__panel--visao .sobrenos-mv__text {
    right: 20%;
    bottom: 80px;
}
	
	.contactos-hero__content {
    position: absolute;
    z-index: 3;
    pointer-events: auto;
    top: 55%;
    left: 25%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: calc(var(--container-max) / 2);
    color: #fff;
    height: auto;
    display: flex;
    flex-direction: column;
    padding-inline: var(--container-pad);
    align-items: flex-start;
		margin-inline:auto;
}
	
.postid-82 .servico-hero__content {
    position: relative;
    z-index: 3;
    pointer-events: auto;
    padding-top: calc(var(--header-height, 90px) + 5rem);
    padding-left: clamp(1.5rem, 5vw, 5rem);
    padding-right: 2rem;
    padding-bottom: 3rem;
    max-width: clamp(320px, 40%, 580px);
    width: 100%;
    color: #fff;
}
	
	.sobrenos-mv__panel--visao .sobrenos-mv__text {
    right: 30%;
    bottom: 90px;
}
	
	.sobrenos-mv__desc {
    max-width: 38ch;
    color: var(--color-white);
    font-size: 0.85rem;
    line-height: 1.6;
}
}
/* IntermÃ©dio 2 */
@media only screen and (max-width: 1650px) {
	
	.section-clientes__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* gap: 3rem; */
    margin-right: 50px;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
    flex-direction: row;
}
	.contactos-hero__content {
    left: 30%;
 
}
	body.admin-bar .site-header {
    margin-top: 0px !important; 
}
	
.archive-servicos-hero__content {
    position: relative;
    z-index: 10;
    max-width: clamp(260px, 31%, 570px);
    padding: 3rem 1.5rem 3rem 2rem;
    color: #fff;
    pointer-events: none;
}	
	
	.postid-82 .servico-hero__content {
    position: relative;
    z-index: 3;
    pointer-events: auto;
    padding-top: calc(var(--header-height, 60px) + 1rem);
    padding-left: clamp(1.5rem, 5vw, 5rem);
    padding-right: 2rem;
    padding-bottom: 3rem;
    max-width: clamp(320px, 40%, 580px);
    width: 100%;
    color: #fff;
}
	
.servico-hero__content {
    position: relative;
    z-index: 3;
    pointer-events: auto;
    padding-top: calc(var(--header-height, 90px) + 2rem);
    padding-left: clamp(1.5rem, 5vw, 5rem);
    padding-right: 2rem;
    padding-bottom: 3rem;
    max-width: clamp(320px, 40%, 580px);
    width: 100%;
    color: #fff;
}	
	
	.contactos-hero__info-item span {
width:61%;
		max-width:100%;
}
	.client-card__logo img {
    max-width: 100%;
    max-height: 80%;
    object-fit: contain;
    width: auto;
    height: auto;
}
	
}

@media only screen and (max-width: 1524px){
	
	.section-clientes__shape {
   display:none;
}
	
	.section-clientes__track-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0px;
    width: clamp(7rem, 28vw, 2.5rem);
    height: 100%;
    background: linear-gradient(to left, transparent 0%, var(--color-white) 90%);
    z-index: 5;
    pointer-events: none;
}
}
@media (max-width: 1400px) and (min-width:900px){
  .sobrenos-mv .container{
    padding: 0px;
  }
  .sobrenos-mv__panel--missao {
      top: calc(clamp(-5.5rem, -4vw, -1rem) - var(--sobrenos-mv-diagonal-half-gap));
      left: calc(clamp(-17rem, -20vw, -4rem) - var(--sobrenos-mv-diagonal-half-gap));
      margin-top: -70px;
  }
  .sobrenos-mv__panel--visao {
      right: calc(clamp(-16rem, -17vw, -4rem) - var(--sobrenos-mv-diagonal-half-gap));
      bottom: calc(clamp(-7rem, -5vw, -1.5rem) - var(--sobrenos-mv-diagonal-half-gap));
      margin-bottom: -48px;
  }
  .sobrenos-mv__panel {
    position: absolute;
    width: clamp(540px, 80vw, 1060px);
    aspect-ratio: 1261 / 673;
    pointer-events: none;
}
    .sobrenos-mv__panel--visao .sobrenos-mv__text {
        right: 30%;
        bottom: 40px;
    }
    .sobrenos-mv__panel--visao .sobrenos-mv__text {
        right: 30%;
        bottom: 70px;
    }

  }
  @media (max-width: 1200px) and (min-width:900px){
    .sobrenos-mv__title {
      font-size: 1.5rem;
      line-height: 1;
  }
  .sobrenos-mv__desc {
        max-width: 36ch;
        color: var(--color-white);
        font-size: 0.75rem;
        line-height: 1.3;
    }
    .sobrenos-mv__panel--visao {
        right: calc(clamp(-16rem, -17vw, -4rem) - var(--sobrenos-mv-diagonal-half-gap));
        bottom: calc(clamp(-7rem, -5vw, -1.5rem) - var(--sobrenos-mv-diagonal-half-gap));
        margin-bottom: -79px;
    }
}
	
/* HD READY - ResoluÃ§Ã£o Base Desenvolvimento */
@media only screen and (max-width: 1365px) {
.sobrenos-values__marquee::before {
    content: "";
    position: absolute;
    top: 0;
    left: 269px;
    width: clamp(7rem, 28vw, 2.5rem);
    height: 100%;
    background: linear-gradient(to left, transparent 0%, var(--color-white) 90%);
    z-index: 5;
    pointer-events: none;
}
}

/* Media query para menu hamburguer */
@media print, screen and (max-width: 1289px) {
.has-transparent-header .site-header:not(.is-scrolled) .site-nav__item a {
    color: black;
}
	.hero__illustration-item {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    opacity: 0;
    transform: translateX(20px) scale(0.98);
    transition: opacity 0.7s ease, transform 0.7s ease;
    height: 100vh;
}
	
	.hero__illustration-img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
    object-position: right center;
}
	
	body.is-right-menu-white.has-transparent-header .site-header:not(.is-scrolled) .site-nav--right .site-nav__item a,body.is-right-menu-white.has-transparent-header .site-header:not(.is-scrolled) .site-header__search-toggle{
		color:black;
	}
	}

/* Media query para menu hamburguer */
@media print, screen and (max-width: 1200px) {
}

/*tablet landscape or old laptop */
@media print, screen and (max-width: 1024px) {
	.site-footer__contact {
    padding-top: 0.5rem;
    width: 100%;
    max-width: 100%;
}
	
	.site-footer__contact-item{
		width:100%;
	}
}
@media only screen and (max-width: 800px) {
.archive-servicos-hero{
		background-image:unset;
		background-color:var(--color-red);
	}
	
	.archive-servicos-hero__triangle:nth-child(1){
		display:none;
	}
}

/* Size considerado para Tablet */
@media only screen and (max-width: 900px) {
	.sobrenos-values__marquee::before {
    content: "";
    position: absolute;
    top: 0;
    left: 212px;
    width: clamp(7rem, 28vw, 2.5rem);
    height: 100%;
    background: linear-gradient(to left, transparent 0%, var(--color-white) 90%);
    z-index: 5;
    pointer-events: none;
  }

    .contactos-hero__overlay {
        order: 2;
        height: auto;
    }
    .contactos-hero__content {
        left: auto;
        transform: none;
        top: auto;
        position: relative;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .sobrenos-mv__panel--visao {
        margin-right: 0vw;
        bottom: 0px;
        width: calc(100% + 40px);
        position: relative;
        background: #ca0502;
        padding-top: 40px;
        padding-bottom: 40px;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
        margin-bottom: 0px;
    }
    .sobrenos-mv__panel--missao {
        margin-left: 0vw;
        width: 100%;
        top: 0px;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .sobrenos-mv__panel--missao .sobrenos-mv__text {
        left: 0%;
        right: 0%;
        max-width: 100%;
        position: relative;
    transform: none;
    }
.sobrenos-mv.is-visible .sobrenos-mv__shape, .sobrenos-mv.is-visible .sobrenos-mv__text {
    opacity: 1;
    transform: none;
    position: relative;
    transform: none;
}
    .sobrenos-mv__panel--visao .sobrenos-mv__text {
        right: 0%;
        bottom: 0px;
        position: relative;
        left: 0px;
    }
    .sobrenos-mv.is-visible .sobrenos-mv__shape{
      display: none !important;
    }

}
/* Size considerado para Tablet modo portrait*/
@media only screen and (max-width: 767.5px) {
	.hero__illustration {
    order: 1;
    position: relative;
    inset: auto;
    transform: none;
    width: 100%;
    max-width: none;
    height: clamp(290px, 80vw, 520px);
    max-height: none;
    margin: 0;
    padding: 0;
}


.archive-servicos-hero__content{

        max-width: clamp(100%, 31%, 570px);
}


}

@media only screen and (max-width: 700px) {
	.sobrenos-values__marquee::before {
    content: "";
    position: absolute;
    top: 0;
    left: 169px;
    width: clamp(7rem, 28vw, 2.5rem);
    height: 100%;
    background: linear-gradient(to left, transparent 0%, var(--color-white) 90%);
    z-index: 5;
    pointer-events: none;
}
	
	
	.home .section-clientes__track-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0px;
    width: 46px;
    height: 100%;
    background: linear-gradient(to right, white 20px, transparent 100%);
    z-index: 5;
    pointer-events: none;
}
	
	.section-sobre .container {
    padding-inline: var(--container-pad);
}
}
/* Size considerado Mobile - 430px*/
@media only screen and (max-width: 640px) {
	.archive-servicos-hero__content {
    padding: 7rem 1.5rem 3rem 2rem;
	width:100%;

}
	
	.sobrenos-page {
    padding-top: 63px;
}
	
	.sobrenos-mv__desc {
    max-width: 50ch;
    color: var(--color-white);
    font-size: 0.85rem;
    line-height: 1.6;
}
	
	
    .sobrenos-values__marquee::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: clamp(7rem, 28vw, 2.5rem);
      height: 100%;
      background: linear-gradient(to left, transparent 0%, var(--color-white) 90%);
      z-index: 5;
      pointer-events: none;
  }
  .sobrenos-map__svg, 
  .sobrenos-map__countries{

    transform: scale(1.5);
  }
}
/* smartphones plus */
@media only screen and (max-width: 423px) {
	.archive-servicos-hero__content {
    padding: 4rem 1.5rem 3rem 2rem;
    width: 100%;
}
	
	
}
/* smartphones normais  */
@media only screen and (max-width: 384px) {
	.sobrenos-hero-overlay img {
    right: -23vw;
   
}
	.sobrenos-mv__panel--missao {
    margin-left: 0vw;
    width: 100%;
    top: 0px;
    margin-top: 0px;
    margin-bottom: 40px;
}
	
	.sobrenos-mv__panel--visao{
		padding-bottom:0px;
	}
	
	.counter-item__number {
    width: 40%;
    text-align: right;
}
}

@media only screen and (max-width: 375px) and (max-height:812px){
	.sobrenos-mv__panel--missao {
    margin-left: 0vw;
    width: 100%;
    top: 0px;  
    margin-top: 40px;
    margin-bottom: 40px;
}
}
/* iphone 5 <=  */
@media only screen and (max-width: 320px) {
}

.sobrenos-values__title::before {
    content: "";
    position: absolute;
    left: -106px;
    top: 0.2rem;
    bottom: 0.2rem;
    width: 106px;
    background: #ffffff;
}



.archive-servicos-hero__content {
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.archive-servicos-hero__content.is-switching {
    opacity: 0;
    transform: translateY(14px);
}

.archive-servicos-hero__triangle {
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.archive-servicos-hero__triangle.is-active {
    opacity: 1;
}





@media only screen and (max-width:1500px){
	.section-servicos__left .section-title {
    color: var(--color-red);
    margin-bottom: 1.5rem;
    font-weight: 500;
    width: 95%;
    max-width: 100%;
}
	
	.section-servicos__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
    align-items: start;
}
}


@media only screen and (max-width:442px){
	.section-clientes__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* gap: 3rem; */
    margin-right: 50px;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
    flex-direction: column;
}
}

@media only screen and (max-width:450px){
	.section-clientes--inline .section-clientes__title{    
		font-size: var(--size-title-lg) !important;
}
	
	.sobrenos-mv__text{
		padding-bottom:40px;
	}
	
	.sobrenos-values__item {
    padding-right: 2rem;
}
	
	.sobrenos-clients__track {
    gap: clamp(0.5rem, 1.5vw, 5.5rem);
}
	
	.client-card {
    width: clamp(150px, 10vw, 190px);
    height: clamp(100px, 6.4vw, 110px);
}
}

.page-id-198 .page-content,.page-id-196 .page-content{
	max-width:75% !important;
}

.terms-conditions,.wid p, .privacy-policy p{
	margin-bottom:20px !important;
}

.page-content .sem-marg{
	margin-bottom:0px !important;
}

.sem-marg:last-child{
	margin-bottom:20px !important;
}

.disc{
	list-style:disc;
	margin-bottom:20px !important
}



.page-template-page-contactos-php #fale-connosco{
	display:none;
}


@media only screen and (min-width:2200px){
	.site-header .container {
    max-width: 100%;
}
	
	.hero__content .container {
    max-width: 100%;
    width: 100%;
    padding-inline: clamp(2rem, 5vw, 7rem);
    position: relative;
}
	
	.hero + .section-sobre .section-sobre__inner {
    grid-template-columns: 1fr 1fr;
    min-height: auto;
    align-items: start;
    margin-top: 15%;
}
	
	.sobrenos-hero {
    position: relative;
    display: block !important;
    min-height: clamp(390px, 48vw, 938px);
    background-color: #222;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 0;
}
	
	.sobrenos-mv__panel--missao .sobrenos-mv__text {
    top: 70px;
    left: 33%;
    max-width: 50%;
}
	
	.sobrenos-page .container {
     max-width: 100%; 
	}
	
	.sobrenos-map__client-shape {
    position: absolute;
    right: clamp(-13rem, 2vw, -0.13rem);
    bottom: -13px;
    z-index: 5;
    width: min(50vw, 760px);
    min-width: 420px;
    aspect-ratio: 1;
    pointer-events: none;
    transform: translateY(50%);
}
	
.section-clientes__track-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: -51px;
    width: clamp(7rem, 28vw, 2.5rem);
    height: 100%;
    background: linear-gradient(to left, transparent 0%, var(--color-white) 90%);
    z-index: 5;
    pointer-events: none;
}
	
	.container {
    max-width: 100%;
    margin-inline: auto;
    padding-inline: var(--container-pad);
}
	
	.section-clientes__cta {
    flex-shrink: 0;
    margin-right: 12%;
}
}