/* cmsms stylesheet: Design modified: sexta-feira, 14 de agosto de 2026 19:12:53 */
:root{
  --yellow:#ddc127;
  --black:#080808;
  --white:#FAFAFA;
  --dark:#151515;
  --gray:#f3f3f1;
  --text:#222;
  --saneamento:#009dda;
  --radius:20px;
}

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

.uk-section-muted{
  background:var(--gray);
}

.logo-branco{
  filter: brightness(0) invert(1);
}

.uk-border-rounded{
    border-radius:var(--radius);
}

.mch-navbar{
  background:var(--yellow);
  backdrop-filter:blur(12px);
  padding: 10px 0;
}

.uk-navbar-nav>li>a{
    color:var(--black);
    font-weight: 700;
}

.mch-hero{
  min-height:720px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.74) 42%, rgba(0,0,0,.20) 100%),
    url('/uploads/images/bg-hero-home.jpg') center/cover no-repeat;
  color:var(--white);
  position:relative;
}

.mch-hero:after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:8px;
  background:var(--yellow);
}

.mch-kicker{
  color:var(--yellow);
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.14em;
}

.mch-title{
  font-size:clamp(42px, 7vw, 86px);
  line-height:.95;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:-2px;
  color: #FFF;
}

.mch-hero .mch-title, .mch-hero p.uk-text-lead
.mch-page-hero .mch-title{
  color:var(--white);
}

.mch-hero p{font-size: 1.3em;}

.mch-btn{
  background:var(--black);
  color:var(--white);
  font-weight:800;
  border-radius:999px;
  padding:0 30px;
}

.mch-hero .mch-btn{
  background:var(--yellow);
  color:var(--black);
}

.mch-btn:hover{
  background:var(--white);
  color:var(--black);
}

.mch-btn-outline{
  border:1px solid rgba(255,255,255,.5);
  color:var(--white);
  border-radius:999px;
  font-weight:700;
}

.mch-section-title{
  font-size:clamp(32px, 5vw, 58px);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:-1px;
  line-height:1;
}

.mch-section-title{
  color:var(--black);
}

.uk-section-secondary .mch-section-title,
.mch-process-section .mch-section-title{
  color:var(--white);
}

.mch-section-title span{
  color:var(--yellow);
}

.mch-card{
  border-radius:var(--radius);
  overflow:hidden;
  background:var(--white);
  box-shadow:0 18px 50px rgba(0,0,0,.08);
  transition:.25s ease;
}

.mch-card:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 70px rgba(0,0,0,.14);
}

.mch-product{
  min-height:340px;
  color:var(--white);
  position:relative;
  overflow:hidden;
  border-radius:var(--radius);
  background:#111;
}

.mch-product img{
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.55;
  transition:.35s ease;
}

.mch-product:hover img{
  transform:scale(1.06);
  opacity:.38;
}

.mch-product-content{
  position:absolute;
  inset:0;
  padding:32px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  background:linear-gradient(180deg, transparent 15%, rgba(0,0,0,.82) 100%);
}

.mch-product i{
  color:var(--yellow);
  font-size:42px;
}

.mch-product h3{
  color:var(--white);
  font-size:30px;
  font-weight:900;
  text-transform:uppercase;
}

.mch-feature{
  background:var(--black);
  color:var(--white);
  border-radius:var(--radius);
  padding:42px;
}

.mch-feature i{
  color:var(--yellow);
  font-size:48px;
}

.mch-yellow-box{
  background:var(--yellow);
  color:var(--black);
  border-radius:var(--radius);
  padding:42px;
}

.mch-gallery figure{
  margin:0;
  border-radius:var(--radius);
  overflow:hidden;
  background:#111;
  height:280px;
}

.mch-gallery img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.3s ease;
}

.mch-gallery a:hover img{
  transform:scale(1.06);
  opacity:.75;
}

.mch-footer{
  background:#080808;
  color:#aaa;
}

.mch-footer h4,
.mch-footer strong{
  color:var(--yellow);
}

.mch-footer .uk-nav-default>li.uk-active>a {color:var(--yellow);}


/* ==========================================================
   ELEMENTOS INSTITUCIONAIS GERAIS
   Reutilizáveis nas páginas Empresa, Produtos e Serviços
   ========================================================== */

/* Hero interno das páginas */
.mch-page-hero{
  position:relative;
  min-height:460px;
  display:flex;
  align-items:center;
  color:var(--white);
  background-color:var(--dark);
  background-position:center;
  background-repeat:no-repeat;
  background-size:cover;
  overflow:hidden;
}

.mch-page-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.92) 0%,
      rgba(0,0,0,.72) 48%,
      rgba(0,0,0,.25) 100%
    );
}

.mch-page-hero::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:8px;
  background:var(--yellow);
}

.mch-page-hero .uk-container{
  position:relative;
  z-index:1;
  width:100%;
}

.mch-page-hero .mch-title{
  max-width:900px;
  margin-bottom:20px;
}

.mch-page-hero .uk-text-lead{
  max-width:720px;
  color:var(--white);
}


/* Imagem institucional */
.mch-media{
  position:relative;
  overflow:hidden;
  border-radius:var(--radius);
  min-height:460px;
  background:var(--dark);
}

.mch-media img{
  display:block;
  width:100%;
  height:100%;
  min-height:460px;
  object-fit:cover;
}

.mch-media::after{
  content:"";
  position:absolute;
  right:24px;
  bottom:24px;
  width:90px;
  height:8px;
  border-radius:999px;
  background:var(--yellow);
}


/* Cartão institucional claro */
.mch-info-card{
  height:100%;
  box-sizing:border-box;
  padding:36px;
}

.mch-info-card i{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:68px;
  height:68px;
  margin-bottom:24px;
  border-radius:18px;
  background:var(--yellow);
  color:var(--black);
  font-size:34px;
}

.mch-info-card h3{
  margin-top:0;
  margin-bottom:12px;
  color:var(--black);
  font-size:24px;
  font-weight:800;
}

.mch-info-card p:last-child{
  margin-bottom:0;
}


/* Variação para cartão escuro */
.mch-feature h3{
  color:var(--white);
  font-weight:800;
}

.mch-feature p{
  color:rgba(255,255,255,.72);
}


/* Missão, visão e valores */
.mch-value-card{
  position:relative;
  height:100%;
  box-sizing:border-box;
  padding:38px;
  overflow:hidden;
}

.mch-value-card::after{
  content:"";
  position:absolute;
  right:-30px;
  bottom:-45px;
  width:140px;
  height:140px;
  border:1px solid rgba(0,0,0,.09);
  border-radius:50%;
}

.mch-value-card i{
  display:block;
  margin-bottom:22px;
  color:var(--black);
  font-size:48px;
}

.mch-value-card h3{
  margin-top:0;
  color:var(--black);
  font-size:28px;
  font-weight:900;
  text-transform:uppercase;
}

.mch-value-card ul{
  margin-bottom:0;
}


/* Processo de trabalho */
.mch-process-section{
  background:var(--black);
  color:var(--white);
}

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

.mch-process-grid{
  position:relative;
}

.mch-process-step{
  position:relative;
  height:100%;
  box-sizing:border-box;
  padding:30px 24px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--radius);
  background:rgba(255,255,255,.04);
}

.mch-process-number{
  margin-bottom:30px;
  color:var(--yellow);
  font-size:44px;
  font-weight:900;
  line-height:1;
}

.mch-process-step h3{
  margin:0 0 10px;
  color:var(--white);
  font-size:20px;
  font-weight:800;
}

.mch-process-step p{
  margin-bottom:0;
  color:rgba(255,255,255,.65);
}


/* Mini cartões de segmentos */
.mch-segment-card{
  display:flex;
  align-items:center;
  min-height:100px;
  box-sizing:border-box;
  padding:22px;
  gap:16px;
  border-radius:var(--radius);
  background:var(--gray);
  color:var(--black);
  font-size:17px;
  font-weight:800;
  transition:
    transform .25s ease,
    background .25s ease,
    color .25s ease;
}

.mch-segment-card i{
  flex:0 0 auto;
  color:var(--yellow);
  font-size:34px;
}

.mch-segment-card:hover{
  transform:translateY(-4px);
  background:var(--black);
  color:var(--white);
  text-decoration:none;
}


/* Bloco de chamada final */
.mch-cta{
  position:relative;
  overflow:hidden;
  padding:48px;
  border-radius:var(--radius);
  background:var(--yellow);
  color:var(--black);
}

.mch-cta::after{
  content:"";
  position:absolute;
  right:-80px;
  bottom:-120px;
  width:300px;
  height:300px;
  border:1px solid rgba(0,0,0,.12);
  border-radius:50%;
}

.mch-cta > *{
  position:relative;
  z-index:1;
}

.mch-cta h2{
  margin:0;
  color:var(--black);
  font-size:clamp(30px, 4vw, 48px);
  font-weight:900;
  line-height:1.05;
  text-transform:uppercase;
}

.mch-cta p{
  max-width:760px;
  margin-bottom:0;
  font-size:18px;
}


/* Ajustes responsivos */
@media (max-width:959px){

  .mch-page-hero{
    min-height:400px;
  }

  .mch-media,
  .mch-media img{
    min-height:360px;
  }

  .mch-cta{
    padding:36px;
  }

}

@media (max-width:639px){

  .mch-page-hero{
    min-height:360px;
  }

  .mch-page-hero .mch-title{
    font-size:42px;
  }

  .mch-info-card,
  .mch-value-card{
    padding:28px;
  }

  .mch-cta{
    padding:30px 24px;
  }

}

.mch-feature.mch-value-card h3{
  color:var(--white);
}

.mch-feature.mch-value-card li{
  color:rgba(255,255,255,.78);
}

.mch-feature.mch-value-card i{
  color:var(--yellow);
}

/* ==========================================================
   TEMPLATE DE PRODUTO MARCHESI
   Complemento do CSS global. Reutiliza variáveis e classes mch-*.
   ========================================================== */

.mch-product-page {
  overflow: hidden;
  background: var(--white);
}

/* Hero contextual do segmento */
.mch-painel-hero {
  position: relative;
  min-height: clamp(340px, 48vw, 440px);
  overflow: hidden;
  isolation: isolate;
}

.mch-painel-hero__media {
  position: absolute;
  z-index: -1;
  inset: 0 0 0 32%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 30%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 30%);
}

.mch-painel-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 76% center;
}

.mch-painel-hero__inner {
  display: flex;
  min-height: inherit;
  align-items: center;
}

.mch-painel-hero__copy {
  position: relative;
  z-index: 1;
  padding: clamp(64px, 8vw, 88px) 0;
}

.mch-painel-hero__kicker {
  color: rgba(255, 255, 255, .72);
}

.mch-painel-hero__title {
  max-width: 900px;
  margin: 8px 0 0;
  color: #fff;
  font-size: clamp(42px, 5.4vw, 76px);
  font-weight: 700;
  line-height: .96;
  letter-spacing: -.045em;
}

.mch-painel-hero .uk-text-lead {
  max-width: 560px;
  margin-top: 22px;
  color: rgba(255, 255, 255, .84);
}

/* Apresentação */
.mch-product-hero {
  text-align: center;
  background:
    radial-gradient(circle at 50% 76%, rgba(221, 193, 39, .15), transparent 34%),
    var(--white);
}

.mch-product-hero__copy {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
}

.mch-product-hero .mch-title {
  max-width: 900px;
  margin: 14px auto 22px;
  color: var(--black);
  font-size: clamp(38px, 5.6vw, 72px);
  line-height: .96;
  letter-spacing: -.045em;
  text-transform: none;
}

.mch-product-hero .uk-text-lead {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
  color: #555;
  font-size: clamp(19px, 1.8vw, 25px);
  line-height: 1.4;
}

.mch-product-stage {
  position: relative;
  margin: clamp(38px, 5vw, 68px) auto 0;
  padding: 0 clamp(16px, 4vw, 64px);
}

.mch-product-stage::before {
  position: absolute;
  left: 50%;
  bottom: 4%;
  width: 78%;
  height: 32%;
  border-radius: 50%;
  background: rgba(221, 193, 39, .22);
  filter: blur(70px);
  content: "";
  transform: translateX(-50%);
}

.mch-product-stage img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(1450px, 100%);
  height: auto;
  margin: 0 auto;
}

/* Escala tipográfica exclusiva do template de painéis */
.mch-product-page .mch-section-title {
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.04;
  letter-spacing: -.035em;
}

/* História */
.mch-product-story {
  position: relative;
  background: var(--black);
  color: rgba(255, 255, 255, .72);
}

.mch-product-story__headline {
  max-width: 980px;
  margin: 14px 0 clamp(32px, 4vw, 48px);
  color: var(--white);
  font-size: clamp(38px, 5.4vw, 72px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.045em;
}

.mch-product-story__headline span { color: var(--yellow); }

.mch-product-story__body {
  max-width: 760px;
  margin-left: auto;
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.55;
}

.mch-product-story__body strong { color: var(--white); }

/* Galeria: UIkit permanece responsável pelo container e responsividade */
.mch-product-gallery {
  padding: clamp(64px, 8vw, 110px) 0;
  background: var(--gray);
}

.mch-product-gallery__intro {
  max-width: 760px;
  margin: 0 auto clamp(32px, 4vw, 52px);
  text-align: center;
}

.mch-product-gallery__frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: clamp(12px, 1.6vw, 22px);
  border-radius: clamp(20px, 3vw, 36px);
  background: var(--white);
  box-shadow: 0 24px 60px rgba(8, 8, 8, .10);
}

.mch-product-gallery__frame img {
  display: block;
  width: 100%;
  height: auto;
}

.mch-product-gallery__caption {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 8px 4px;
}

.mch-product-gallery__caption strong {
  color: var(--black);
  font-size: clamp(19px, 1.7vw, 25px);
}

.mch-product-gallery__caption span {
  max-width: 550px;
  color: #666;
}

/* Benefícios: grid, espaçamento entre colunas e alturas vêm do UIkit */
.mch-product-features {
  padding: clamp(68px, 8.5vw, 120px) 0;
}

.mch-product-features__heading {
  max-width: 820px;
  margin-bottom: clamp(30px, 4vw, 52px);
}

.mch-product-page .mch-product-feature {
  min-height: 220px;
  border: 1px solid rgba(8, 8, 8, .08);
  border-radius: clamp(18px, 2vw, 26px);
  background: var(--gray);
}

.mch-product-page .mch-product-feature--yellow {
  background: var(--yellow);
  color: var(--black);
}

.mch-product-page .mch-product-feature--dark {
  background: var(--dark);
  color: rgba(255, 255, 255, .72);
}

.mch-product-feature__number {
  display: block;
  margin-bottom: clamp(34px, 4vw, 56px);
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
}

.mch-product-feature--yellow .mch-product-feature__number { color: var(--black); }

.mch-product-feature h3 {
  margin: 0 0 10px;
  color: var(--black);
  font-size: clamp(24px, 2.3vw, 34px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.03em;
}

.mch-product-feature--dark h3 { color: var(--white); }

.mch-product-feature__text {
  font-size: 17px;
  line-height: 1.5;
}

/* O bloco de opcionais atual deve permanecer sem alterações. */

@media (max-width: 959px) {
  .mch-painel-hero__media {
    left: 12%;
    opacity: .72;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 48%);
    mask-image: linear-gradient(90deg, transparent, #000 48%);
  }
}

@media (max-width: 639px) {
  .mch-painel-hero { min-height: 330px; }

  .mch-painel-hero__media {
    inset: 0 -42% 0 0;
    opacity: .52;
  }

  .mch-product-gallery__caption { display: block; }

  .mch-product-gallery__caption span {
    display: block;
    margin-top: 8px;
  }

  .mch-product-page .mch-product-feature { min-height: 0; }
}

.mch-product-options{
  background:var(--black);
  color:var(--white);
}

.mch-product-options .mch-section-title{
  max-width:860px;
  color:var(--white);
}

.mch-product-option{
  display:flex;
  align-items:center;
  padding: 10px 0;
  border-top:1px solid rgba(255,255,255,.16);
  color:var(--white);
  font-size:clamp(17px, 1.7vw, 22px);
  font-weight:700;
}

.mch-product-option::before{
  content:"+";
  flex:0 0 auto;
  margin-right:18px;
  color:var(--yellow);
  font-size:26px;
  font-weight:400;
}

.mch-product-options__grid .uk-grid-margin{
  margin-top: 0px;
}

.mch-product-cta{
  padding:clamp(100px, 15vw, 210px) 0;
  text-align:center;
  background:
    radial-gradient(circle at 50% 50%, rgba(221,193,39,.3), transparent 35%),
    var(--yellow);
}

.mch-product-cta .mch-section-title{
  max-width:980px;
  margin-right:auto;
  margin-left:auto;
  font-size:clamp(44px, 7vw, 92px);
  line-height:.96;
}

.mch-product-cta p{
  max-width:640px;
  margin:28px auto 38px;
  font-size:clamp(19px, 2vw, 26px);
}

.mch-product-cta .mch-btn:hover{
  background:var(--white);
}

@media (max-width:639px){
  .mch-product-page .mch-product-feature{
    min-height:250px;
  }
}

@media (prefers-reduced-motion:reduce){
  .mch-product-page *{
    scroll-behavior:auto !important;
  }
}


/* ==========================================================
   CARDS DE PAINÉIS
   Reutilizáveis nas vitrines de produtos e segmentos
   ========================================================== */

/* Estrutura */

.mch-panel-card{
  height:100%;
  overflow:hidden;
  border:1px solid rgba(8,8,8,.08);
  border-radius:var(--radius);
  background:var(--white);
  box-shadow:0 12px 35px rgba(8,8,8,.07);
  transition:
    transform .45s cubic-bezier(.2,.8,.2,1),
    box-shadow .45s ease,
    border-color .45s ease;
}

.mch-panel-card__link{
  display:flex;
  flex-direction:column;
  height:100%;
  color:var(--text);
  text-decoration:none;
}

.mch-panel-card__link:hover,
.mch-panel-card__link:focus{
  color:var(--text);
  text-decoration:none;
}

/* Imagem */

.mch-panel-card__media{
  position:relative;
  overflow:hidden;
  aspect-ratio:4 / 3;
  margin:0;
  background:
    radial-gradient(
      circle at 50% 55%,
      rgba(221,193,39,.16),
      transparent 45%
    ),
    var(--white);
}

.mch-panel-card__media::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    transparent 50%,
    rgba(8,8,8,.1) 100%
  );
  opacity:0;
  transition:opacity .4s ease;
  pointer-events:none;
}

.mch-panel-card__media img{
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
  padding:22px;
  box-sizing:border-box;
  transition:
    transform .65s cubic-bezier(.2,.8,.2,1),
    filter .45s ease;
}

/* Etiqueta */

.mch-panel-card__segment{
  position:absolute;
  top:18px;
  left:18px;
  z-index:2;
  padding:8px 13px;
  border-radius:999px;
  background:rgba(8,8,8,.86);
  color:var(--white);
  font-size:11px;
  font-weight:800;
  line-height:1;
  letter-spacing:.09em;
  text-transform:uppercase;
  backdrop-filter:blur(8px);
}

/* Botão circular */

.mch-panel-card__arrow{
  position:absolute;
  right:18px;
  bottom:18px;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:center;
  width:48px;
  height:48px;
  border-radius:50%;
  background:var(--yellow);
  color:var(--black);
  opacity:0;
  transform:translateY(12px) rotate(-10deg);
  transition:
    opacity .35s ease,
    transform .45s cubic-bezier(.2,.8,.2,1);
}

/* Conteúdo */

.mch-panel-card__body{
  display:flex;
  flex:1;
  flex-direction:column;
  padding:28px;
}

.mch-panel-card__title{
  margin:0 0 13px;
  color:var(--black);
  font-size:clamp(23px, 2.1vw, 31px);
  font-weight:900;
  line-height:1.08;
  letter-spacing:-.035em;
}

.mch-panel-card__description{
  display:-webkit-box;
  overflow:hidden;
  margin:0 0 25px;
  color:#626262;
  font-size:16px;
  line-height:1.6;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:3;
}

.mch-panel-card__cta{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:auto;
  color:var(--black);
  font-size:13px;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.mch-panel-card__cta .uk-icon{
  transition:transform .35s ease;
}

/* Hover e foco */

.mch-panel-card:hover,
.mch-panel-card:focus-within{
  border-color:rgba(221,193,39,.75);
  box-shadow:0 25px 65px rgba(8,8,8,.15);
  transform:translateY(-10px);
}

.mch-panel-card:hover .mch-panel-card__media img,
.mch-panel-card:focus-within .mch-panel-card__media img{
  filter:saturate(1.05) contrast(1.03);
  transform:scale(1.055);
}

.mch-panel-card:hover .mch-panel-card__media::after,
.mch-panel-card:focus-within .mch-panel-card__media::after{
  opacity:1;
}

.mch-panel-card:hover .mch-panel-card__arrow,
.mch-panel-card:focus-within .mch-panel-card__arrow{
  opacity:1;
  transform:translateY(0) rotate(0);
}

.mch-panel-card:hover .mch-panel-card__cta .uk-icon,
.mch-panel-card:focus-within .mch-panel-card__cta .uk-icon{
  transform:translateX(5px);
}

/* Foco acessível */

.mch-panel-card__link:focus-visible{
  outline:3px solid var(--yellow);
  outline-offset:-3px;
  border-radius:var(--radius);
}

/* Mobile */

@media (max-width:639px){
  .mch-panel-card__body{
    padding:23px;
  }

  .mch-panel-card__arrow{
    width:44px;
    height:44px;
    opacity:1;
    transform:none;
  }

  .mch-panel-card:hover{
    transform:translateY(-4px);
  }
}

/* Respeita a preferência de redução de movimento */

@media (prefers-reduced-motion:reduce){
  .mch-panel-card,
  .mch-panel-card *,
  .mch-panel-card *::before,
  .mch-panel-card *::after{
    scroll-behavior:auto !important;
    transition-duration:.01ms !important;
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
  }
}


/* ==========================================================
   OBRAS REALIZADAS
   Complemento do CSS global da Marchesi.
   ========================================================== */

.mch-works-page{
  overflow:hidden;
  background:var(--white);
}

.mch-works-intro{
  position:relative;
  padding:clamp(95px, 12vw, 175px) 0 clamp(70px, 9vw, 125px);
  background:var(--black);
  color:var(--white);
}

.mch-works-intro::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:8px;
  background:var(--yellow);
}

.mch-works-intro .mch-title{
  max-width:1050px;
  margin:16px 0 0;
  color:var(--white);
  font-size:clamp(48px, 7.4vw, 105px);
  line-height:.92;
  letter-spacing:-.055em;
  text-transform:none;
}

.mch-works-intro .uk-text-lead{
  margin:0;
  color:rgba(255,255,255,.68);
  font-size:clamp(18px, 1.8vw, 24px);
  line-height:1.5;
}

.mch-works-gallery{
  background:var(--gray);
}

.mch-works-grid{
  margin-left:-24px;
}

.mch-work-grid-item{
  width:50%;
  padding-left:24px;
}

.mch-work-card{
  overflow:hidden;
  border-radius:var(--radius);
  background:var(--white);
  box-shadow:0 16px 45px rgba(8,8,8,.09);
  transition:
    transform .5s cubic-bezier(.2,.8,.2,1),
    box-shadow .5s ease;
}

.mch-work-card__link{
  display:block;
  color:var(--text);
  text-decoration:none;
}

.mch-work-card__link:hover,
.mch-work-card__link:focus{
  color:var(--text);
  text-decoration:none;
}

.mch-work-card__media{
  position:relative;
  overflow:hidden;
  margin:0;
  aspect-ratio:4 / 3;
  background:#dededb;
}

.mch-work-card--wide .mch-work-card__media{
  aspect-ratio:16 / 9;
}

.mch-work-card--tall .mch-work-card__media{
  aspect-ratio:4 / 5;
}

.mch-work-card__media::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 55%, rgba(8,8,8,.35));
  opacity:.25;
  transition:opacity .45s ease;
}

.mch-work-card__media img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:
    transform .8s cubic-bezier(.2,.8,.2,1),
    filter .5s ease;
}

.mch-work-card__zoom{
  position:absolute;
  right:20px;
  bottom:20px;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:center;
  width:50px;
  height:50px;
  border-radius:50%;
  background:var(--yellow);
  color:var(--black);
  opacity:0;
  transform:translateY(12px) scale(.9);
  transition:
    opacity .35s ease,
    transform .45s cubic-bezier(.2,.8,.2,1);
}

.mch-work-card__count{
  position:absolute;
  top:18px;
  right:18px;
  z-index:2;
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(8,8,8,.78);
  color:var(--white);
  font-size:12px;
  font-weight:800;
  line-height:1;
  backdrop-filter:blur(9px);
}

.mch-work-card__lightbox-item{
  display:none;
}

.mch-work-card__info{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  padding:25px 27px 28px;
}

.mch-work-card__segment{
  display:block;
  margin-bottom:8px;
  color:#777;
  font-size:11px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.mch-work-card__title{
  margin:0;
  color:var(--black);
  font-size:clamp(21px, 2vw, 30px);
  font-weight:900;
  line-height:1.12;
  letter-spacing:-.035em;
}

.mch-work-card__location{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  gap:5px;
  color:#777;
  font-size:13px;
  white-space:nowrap;
}

.mch-work-card:hover,
.mch-work-card:focus-within{
  box-shadow:0 28px 75px rgba(8,8,8,.16);
  transform:translateY(-8px);
}

.mch-work-card:hover .mch-work-card__media img,
.mch-work-card:focus-within .mch-work-card__media img{
  filter:saturate(1.05) contrast(1.04);
  transform:scale(1.045);
}

.mch-work-card:hover .mch-work-card__media::after,
.mch-work-card:focus-within .mch-work-card__media::after{
  opacity:.65;
}

.mch-work-card:hover .mch-work-card__zoom,
.mch-work-card:focus-within .mch-work-card__zoom{
  opacity:1;
  transform:translateY(0) scale(1);
}

.mch-work-card__link:focus-visible{
  outline:3px solid var(--yellow);
  outline-offset:-3px;
  border-radius:var(--radius);
}

.mch-works-cta{
  background:var(--white);
}

@media (max-width:959px){
  .mch-work-grid-item{
    width:100%;
  }

  .mch-work-card--tall .mch-work-card__media{
    aspect-ratio:4 / 3;
  }
}

@media (max-width:639px){
  .mch-works-grid{
    margin-left:-14px;
  }

  .mch-work-grid-item{
    padding-left:14px;
  }

  .mch-work-card__info{
    display:block;
    padding:21px;
  }

  .mch-work-card__location{
    margin-top:11px;
  }

  .mch-work-card__zoom{
    width:44px;
    height:44px;
    opacity:1;
    transform:none;
  }
}

@media (prefers-reduced-motion:reduce){
  .mch-work-card,
  .mch-work-card *,
  .mch-work-card *::before,
  .mch-work-card *::after{
    transition-duration:.01ms !important;
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
  }
}

/* ==========================================================
   CONTATO
   Complemento do CSS global da Marchesi.
   ========================================================== */

.mch-contact-page{
  overflow:hidden;
  background:var(--white);
}

.mch-contact-hero{
  position:relative;
  padding:clamp(100px, 13vw, 185px) 0 clamp(80px, 10vw, 135px);
  background:var(--black);
  color:var(--white);
}

.mch-contact-hero::before{
  content:"";
  position:absolute;
  top:-240px;
  right:-180px;
  width:620px;
  height:620px;
  border-radius:50%;
  background:rgba(221,193,39,.16);
  filter:blur(85px);
}

.mch-contact-hero::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:8px;
  background:var(--yellow);
}

.mch-contact-hero .uk-container{
  position:relative;
  z-index:1;
}

.mch-contact-hero .mch-title{
  max-width:1050px;
  margin:16px 0 0;
  color:var(--white);
  font-size:clamp(48px, 7.3vw, 104px);
  line-height:.92;
  letter-spacing:-.055em;
  text-transform:none;
}

.mch-contact-hero .uk-text-lead{
  margin:0;
  color:rgba(255,255,255,.7);
  font-size:clamp(18px, 1.8vw, 24px);
  line-height:1.5;
}

.mch-contact-main{
  background:var(--gray);
}

.mch-contact-form-card{
  padding:clamp(28px, 5vw, 62px);
  border-radius:clamp(24px, 3vw, 38px);
  background:var(--white);
  box-shadow:0 24px 70px rgba(8,8,8,.1);
}

.mch-contact-form-card__intro{
  max-width:620px;
  margin:0 0 38px;
  color:#666;
  font-size:18px;
  line-height:1.6;
}

/* FormBuilder e formulários HTML comuns */
.mch-contact-form label{
  display:block;
  margin-bottom:8px;
  color:var(--black);
  font-size:13px;
  font-weight:900;
  letter-spacing:.035em;
}

.mch-contact-form input[type="text"],
.mch-contact-form input[type="email"],
.mch-contact-form input[type="tel"],
.mch-contact-form input[type="number"],
.mch-contact-form select,
.mch-contact-form textarea{
  box-sizing:border-box;
  width:100%;
  min-height:54px;
  padding:13px 16px;
  border:1px solid rgba(8,8,8,.16);
  border-radius:12px;
  outline:none;
  background:#f8f8f6;
  color:var(--text);
  font:inherit;
  transition:
    border-color .25s ease,
    background .25s ease,
    box-shadow .25s ease;
}

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

.mch-contact-form input:focus,
.mch-contact-form select:focus,
.mch-contact-form textarea:focus{
  border-color:var(--yellow);
  background:var(--white);
  box-shadow:0 0 0 4px rgba(221,193,39,.2);
}

.mch-contact-form .formbuilder_field,
.mch-contact-form .fb_field,
.mch-contact-form .uk-margin{
  margin-bottom:21px;
}

.mch-contact-form input[type="submit"],
.mch-contact-form button[type="submit"]{
  min-height:54px;
  padding:0 30px;
  border:0;
  border-radius:999px;
  background:var(--black);
  color:var(--white);
  font-weight:900;
  line-height:54px;
  cursor:pointer;
  transition:
    background .3s ease,
    color .3s ease,
    transform .3s ease;
}

.mch-contact-form input[type="submit"]:hover,
.mch-contact-form button[type="submit"]:hover{
  background:var(--yellow);
  color:var(--black);
  transform:translateY(-2px);
}

.mch-contact-form .error,
.mch-contact-form .formbuilder_error{
  color:#b42318;
  font-size:13px;
  font-weight:700;
}

.mch-contact-side{
  position:sticky;
  top:30px;
  overflow:hidden;
  border-radius:clamp(24px, 3vw, 38px);
  background:var(--dark);
  color:rgba(255,255,255,.7);
}

.mch-contact-side__intro{
  padding:clamp(28px, 4vw, 48px);
}

.mch-contact-side__eyebrow{
  color:var(--yellow);
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.mch-contact-side h2{
  margin:15px 0 14px;
  color:var(--white);
  font-size:clamp(31px, 3.3vw, 48px);
  font-weight:900;
  line-height:1;
  letter-spacing:-.045em;
}

.mch-contact-side p{
  margin:0;
  font-size:17px;
  line-height:1.6;
}

.mch-contact-channels{
  border-top:1px solid rgba(255,255,255,.12);
}

.mch-contact-channel{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:16px;
  min-height:92px;
  padding:16px clamp(22px, 3vw, 38px);
  border-bottom:1px solid rgba(255,255,255,.12);
  color:var(--white);
  text-decoration:none;
  transition:
    background .3s ease,
    color .3s ease;
}

.mch-contact-channel:hover,
.mch-contact-channel:focus{
  background:var(--yellow);
  color:var(--black);
  text-decoration:none;
}

.mch-contact-channel__icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border-radius:50%;
  background:rgba(255,255,255,.1);
  color:var(--yellow);
}

.mch-contact-channel:hover .mch-contact-channel__icon,
.mch-contact-channel:focus .mch-contact-channel__icon{
  background:var(--black);
  color:var(--yellow);
}

.mch-contact-channel small,
.mch-contact-channel strong{
  display:block;
}

.mch-contact-channel small{
  margin-bottom:3px;
  color:rgba(255,255,255,.55);
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.mch-contact-channel:hover small,
.mch-contact-channel:focus small{
  color:rgba(8,8,8,.58);
}

.mch-contact-channel strong{
  overflow-wrap:anywhere;
  font-size:16px;
}

.mch-contact-channel__arrow{
  transition:transform .3s ease;
}

.mch-contact-channel:hover .mch-contact-channel__arrow,
.mch-contact-channel:focus .mch-contact-channel__arrow{
  transform:translateX(5px);
}

.mch-contact-hours{
  display:flex;
  gap:15px;
  padding:28px clamp(22px, 3vw, 38px);
}

.mch-contact-hours > .uk-icon{
  color:var(--yellow);
}

.mch-contact-hours strong,
.mch-contact-hours span{
  display:block;
}

.mch-contact-hours strong{
  color:var(--white);
  font-size:14px;
}

.mch-contact-hours span{
  margin-top:4px;
  font-size:14px;
}

.mch-contact-location{
  background:var(--white);
}

.mch-contact-location__box{
  padding:clamp(32px, 6vw, 76px);
  border-radius:clamp(24px, 4vw, 42px);
  background:var(--yellow);
}

.mch-contact-location__box .mch-kicker{
  color:var(--black);
}

.mch-contact-location__box .mch-section-title{
  color:var(--black);
}

.mch-contact-location__box p{
  display:flex;
  align-items:flex-start;
  gap:9px;
  max-width:720px;
  margin-bottom:0;
  color:var(--black);
  font-size:clamp(17px, 2vw, 23px);
}

@media (max-width:959px){
  .mch-contact-side{
    position:static;
  }
}

@media (max-width:639px){
  .mch-contact-form-card{
    padding:25px 20px;
  }

  .mch-contact-channel{
    grid-template-columns:auto 1fr;
  }

  .mch-contact-channel__arrow{
    display:none;
  }
}

@media (prefers-reduced-motion:reduce){
  .mch-contact-page *,
  .mch-contact-page *::before,
  .mch-contact-page *::after{
    transition-duration:.01ms !important;
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
  }
}

/* ===== Material-like: underline only (UIKit3) ===== */

.uk-input,
.uk-select,
.uk-textarea {
  border: 0 !important;
  border-bottom: 2px solid #e5e7eb !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.uk-input:focus,
.uk-select:focus,
.uk-textarea:focus {
  border-bottom-color: #2f8f4e !important; /* verde do site (ajuste) */
  box-shadow: 0 2px 0 0 #2f8f4e !important; /* “linha” reforçada */
  outline: none !important;
}

.uk-input::placeholder,
.uk-textarea::placeholder {
  color: rgba(15, 23, 42, 0.45);
}

/* estados de erro do validate (uk-form-danger) */
.uk-form-danger.uk-input,
.uk-form-danger.uk-select,
.uk-form-danger.uk-textarea {
  border-bottom-color: #dc2626 !important;
  box-shadow: 0 2px 0 0 #dc2626 !important;
}

/* labels mais “clean” */
label {
  font-weight: 600;
  color: rgba(15, 23, 42, 0.85);
}

a.marca{
  display: block;
  width: 80px;
  padding: 0px;
}

a.marca .regis{
  fill: rgba(255,255,255,.4);
}


.mch-works-proof { padding: clamp(80px, 9vw, 145px) 0; }
.mch-works-proof__intro h2,
.mch-works-heading h2,
.mch-works-reach h2,
.mch-works-detail h2 {
  font-size: clamp(40px, 4.4vw, 72px);
  font-weight: 750;
  letter-spacing: -.05em;
  line-height: 1.02;
  margin: 16px 0 0;
}
.mch-works-proof__numbers {
  border-top: 1px solid var(--mch-line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(55px, 7vw, 100px);
}
.mch-works-proof__numbers strong { font-size: clamp(64px, 7vw, 112px); letter-spacing: -.07em; line-height: .9; }
.mch-works-proof__numbers strong span { color: var(--yellow); }
.mch-works-proof__numbers p { color: var(--muted); font-size: 18px; line-height: 1.4; max-width: 250px; }

.mch-works-featured { padding: 0 0 clamp(90px, 11vw, 170px); }
.mch-works-heading {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 50px;
}
.mch-works-heading > p { font-size: 20px; line-height: 1.5; margin: 0; }
.mch-works-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px; }
.mch-work-card { background: #fff; border-radius: var(--mch-radius); box-shadow: 0 18px 50px rgba(0,0,0,.08); overflow: hidden; }
.mch-work-card > a { color: inherit; display: block; text-decoration: none; }
.mch-work-card figure { aspect-ratio: 4 / 3; overflow: hidden; position: relative; }
.mch-work-card img { height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.mch-work-card:hover img { transform: scale(1.035); }
.mch-work-card__count { background: rgba(7,7,7,.82); border-radius: 999px; color: #fff; font-size: 13px; font-weight: 700; padding: 8px 13px; position: absolute; right: 18px; top: 18px; }
.mch-work-card__body { padding: 28px 30px 32px; }
.mch-work-card__meta { color: #8b7900; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.mch-work-card h3 { font-size: clamp(26px, 2.2vw, 38px); letter-spacing: -.035em; margin: 8px 0 26px; }
.mch-work-card__link { font-size: 15px; font-weight: 700; }
.mch-work-card__link b { color: #9d8800; margin-left: 4px; }

.mch-works-reach .mch-kicker { color: var(--yellow); }
.mch-works-reach__header { max-width: 920px; }
.mch-works-reach__header > p { color: #aaa; font-size: 21px; line-height: 1.5; max-width: 650px; }
.mch-works-locations { border-top: 1px solid #333; display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 70px; }
.mch-works-locations article { border-bottom: 1px solid #333; padding: 20px 0; position: relative; }
.mch-works-locations article:nth-child(even) { border-left: 1px solid #333; padding-left: 45px; }
.mch-works-locations h3 { font-size: clamp(27px, 2.4vw, 40px); letter-spacing: -.04em; margin: 0px; }
.mch-works-locations p { color: #c9c9c9; font-size: 17px; margin: 0 0 18px; }
.mch-works-locations small { color: #777; font-size: 13px; font-weight: 700; text-transform: uppercase; }
.mch-works-reach__note { color: #777; font-size: 14px; margin: 28px 0 0; }

.mch-works-detail { background: #fff; padding: clamp(90px, 10vw, 160px) 0; }
.mch-works-detail header { margin-bottom: 55px; }
.mch-works-detail__grid { display: grid; grid-template-columns: 1.35fr 1fr; grid-template-rows: 1fr auto; gap: 22px; }
.mch-works-detail__grid figure { border-radius: var(--mch-radius); min-height: 330px; overflow: hidden; }
.mch-works-detail__grid img { height: 100%; object-fit: cover; }
.mch-works-detail__main { grid-row: 1 / 3; }
.mch-works-detail__copy { background: var(--mch-yellow); border-radius: var(--mch-radius); padding: 35px; }
.mch-works-detail__copy strong { font-size: 23px; }
.mch-works-detail__copy p { line-height: 1.55; margin-bottom: 0; }

@media (max-width: 959px) {
  .mch-works-hero__grid, .mch-works-heading { grid-template-columns: 1fr; }
  .mch-works-hero p { max-width: 540px; }
}

@media (max-width: 639px) {
  .mch-works-hero h1 { font-size: clamp(45px, 14vw, 64px); }
  .mch-works-proof__numbers, .mch-works-grid, .mch-works-locations, .mch-works-detail__grid { grid-template-columns: 1fr; }
  .mch-works-proof__numbers article + article { border-left: 0; border-top: 1px solid var(--mch-line); margin-top: 30px; padding-left: 0; }
  .mch-works-locations article:nth-child(even) { border-left: 0; padding-left: 0; }
  .mch-works-detail__main { grid-row: auto; }
  .mch-works-detail__grid figure { min-height: 260px; }
}
