/* === Reset & Base === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
    font-family: 'Mukta', sans-serif;
    background-color: #F1EDDE;
    color: #221d1d;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* === Utilitários Genéricos === */
.px-30 { padding-left: 30px; padding-right: 30px; }
.pt-300 { padding-top: 300px; }
.pb-60 { padding-bottom: 60px; }
.pt-150 { padding-top: 150px; }
.p-60-20 { padding: 60px 20px; }
.p-100-30 { padding: 100px 30px; }

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.container-max { max-width: 1200px; margin: 0 auto; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-wrap { flex-wrap: wrap; }

.text-white { color: #fff; }
.text-primary { color: #ff2d45; }
.text-secondary { color: #700831; }
.text-light { color: #ffffffcc; }
.text-bold { font-weight: bold; }
.text-500 { font-weight: 500; }

.fs-15 { font-size: 15px; }

.gap-40 { gap: 40px; }
.gap-60 { gap: 60px; }
.gap-30 { gap: 30px; }
.col-gap-180 { column-gap: 180px; }
.row-gap-40 { row-gap: 40px; }

.list-none { list-style: none; }
.ml-60 { margin-left: 60px; }

.bg-light {
    background-color: #F1EDDE;
}
.bg-dark { background-color: #6f1a3b; }

.img-full { width: 100%; height: auto; object-fit: contain; display: block; }
.img-cover { object-fit: cover; }
.img-radius { border-radius: 4px; }
.aspect-square { aspect-ratio: 1 / 1; }

.shadow { box-shadow: 0 0 16px rgba(0, 0, 0, 0.35); }
.fixed-top { position: fixed; top: 0; width: 100%; z-index: 1000; }

.title-xl {
  font-family: 'Roboto Serif', serif;
  font-size: 70px;
  font-weight: 700;
  color: #6f1a3b;
}

.title-lg {
  font-family: 'Roboto Serif', serif;
  font-size: 54px;
  font-weight: 700;
  color: #6f1a3b;
}

.subtitle {
  color: #ff2d45;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  margin: 8px 0;
  letter-spacing: 7.3px;
  padding-top: 25px;
}

/* === Botões === */
.btn {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #ff2d45;
  color: #F1EDDE;
  border: 2px solid transparent;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.35);
}

.btn-primary:hover {
    background-color: #F1EDDE;
    color: #ff2d45;
    border: 2px solid #ff2d45;
}

.btn-outline {
  border: 2px solid #ff2d45;
  color: #ff2d45;
}

.btn-outline:hover {
  background-color: #ff2d45;
  color: #fff;
}

.btn-secondary {
  background-color: #9ee3e0;
  color: #6f1a3b;
  font-weight: 500;
  padding: 8px 20px;
  font-size: 15px;
}

.btn-secondary:hover {
  background-color: #6f1a3b;
  color:#9ee3e0 ;
  border:2px solid #9ee3e0 ;
}

/* === Header === */
.site-header {
  height: 100px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 80px;
  height: 100px;
}

.logo img {
  height: auto;
  max-height: 60px;
  width: auto;
  max-width: 320px;
  display: block;
}

/* Compensa o header fixo */
.header-offset {
  padding-top: 120px;
}

/* === Seções === */
.quem-somos-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 180px;
  row-gap: 40px;
  max-width: 1200px;
  margin: 50px auto;
}

.quem-somos {
  padding-bottom: 210px;

}

.quem-somos-img {
  flex: 1;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.quem-somos-img img {
  width: 100%;
  max-width: 650px;
  height: 680px;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.quem-somos-img:hover img {
 transform: scale(1.3);
}

.quem-somos-texto {
  flex: 1;
  min-width: 300px;
}

.quem-somos-texto p {
  font-size: 17px;
  line-height: 1.7;
  color: #ff2d45;
  margin-bottom: 30px;
  margin-top: 25px;
  font-weight: 400;
}

.destaque {
  color: #ff2d45;
  font-weight: 800;
}

.servicos-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: flex-start;
  justify-content: space-between;
}

.servicos-esquerda {
  flex: 1 1 420px;
}

.servicos-esquerda .label {
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 5px;
  color: #fff;
  margin-bottom: 15px;
  display: block;
  font-weight: 600;
}

.servicos-esquerda h2 {
  color: #9CDCDE;
    font-family: "Roboto Serif", Sans-serif;
    font-size: 58px;
    font-weight: 700;
    text-transform: none;
    font-style: normal;
    text-decoration: none;
    line-height: 56px;
    letter-spacing: -0.3px;
    word-spacing: 0px;
}

.servicos-esquerda p {
  font-size: 15px;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 30px;
  padding-top: 15px;
  font-family: 'Mukta', sans-serif;
  letter-spacing: 0px;

}

.servicos-direita {
  flex: 1 1 369px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.servico-item {
  text-align: center;
}

.servico-item i.icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}

.servico-item p {
  color: #fff;
  font-size: 19px;
  font-weight: 500;
}

.trabalhos {
  background: #f2ebda;
  padding: 190px 0;
  text-align: center;
}

.trabalhos-titulo {
  color: #ed1d42;
  font-size: 18px;
  letter-spacing: 6.8px;
  margin-bottom: 40px;
}

.trabalhos-container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0;
  padding: 10px 215px;
}

.trabalho {
  position: relative;
  flex: 1 1 calc(100% / 7);
  height: 570px;
  overflow: hidden;
  cursor: pointer;
}

.trabalho img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s ease;
}

.trabalho .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-color, rgba(217, 36, 56, 0.85));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.trabalho .titulo-hover {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: white;
  transform: scale(0.6);
  opacity: 0.7;
  transition: all 1s ease;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.trabalho:hover img {
  transform: scale(1.3); /* Zoom suave na imagem */
}

.trabalho:hover .overlay {
  opacity: 1;
}

.overlay span {
  font-weight: bold;
}

.trabalho:hover .titulo-hover {
  transform: scale(1);
  opacity: 1;
}

.ver-mais-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.btn-vermais {
  padding: 8px 25px;
  border: 2px solid #FA2A46; /* Cor vermelha do contorno */
  background-color: transparent;
  color: #FA2A46;
  border-radius: 30px;
  font-family:'Mukta' ;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 24px;
  text-decoration: none;
}

.btn-vermais:hover {
  background-color: #FA2A46;
  color: #fff;
}

.clientes {
    background-color: #F1EDDE;
    padding: 80px 0;
    text-align: center;
}

.clientes-titulo {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    letter-spacing: 6px;
    font-weight: 600;
    color: #000;
    margin-bottom: 40px;
}

.slider-wrapper {
    width: 95%;
    max-width: 1570px;
    margin: 0 auto;
    border: 2px solid #000;
    padding: 60px 30px;
    box-sizing: border-box;
    overflow-x: hidden; /* Esconde a barra de rolagem nativa */
    cursor: grab; /* Mostra a mãozinha */
}

/* Quando o usuário clica e segura */
.slider-wrapper:active {
    cursor: grabbing; 
}

.clientes-track {
    display: flex;
    gap: 30px;
    align-items: center;
    width: max-content; /* Garante que a trilha cresça o necessário para caber todas as logos */
}

.clientes-slide {
    /* Em vez de porcentagem, usamos um tamanho base para garantir que não encolham */
    flex: 0 0 200px; 
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.clientes-slide img {
    height: 100%;
    width: 85%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: transform 0.3s ease, filter 0.3s ease;
    pointer-events: none;
}

.clientes-slide:hover img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.sicoob {
  height: 50px;
  


}

.sessao-contato {
  background-color: #F1EDDE;
  text-align: center;
  padding: 60px 0;
  position: relative;
}

.conteudo-contato {
  max-width: 1200px;
  margin: 0 auto;
}

.subtitulo {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: #e4163a;
  letter-spacing: 6px;
  font-weight: 600;
  margin-bottom: 10px;
}

.sessao-contato-titulo {
  font-family: 'Roboto Serif', serif;
  font-size: 58px;
  color: #6d0a32;
  font-weight: 700;
  margin: 0 auto;
}

.linha-vermelha {
  height: 2px;
  background-color: #e4163a;
  width: 100vw;
  margin-top: 20px;
}

.footer {
  background-color: #F1EDDE;
  padding: 60px 10px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #5a0029;
  margin: 50px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  gap: 40px;
}

.footer-col {
  flex: 1 1 250px;
  min-width: 220px;
}

.footer-col h3 {
  color: #5a0029;
  font-family: 'Inter' sans-serif;
  letter-spacing: 4px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 15px;
}

.footer-privacidade {
  display: block;
  color: #c1002b;
  font-weight: 500;
  margin-bottom: 8px;
  text-decoration: none;
  font-size: 12px;
  font-family: 'Mukta'sans-serif;

}

.footer-dpo a {
  color: #c1002b;
  text-decoration: none;
  font-size: 12px;
}

.footer-text {
  font-size: 11px;
  color: #444;
  margin-top: 10px;
}

.links-col ul {
  list-style: none;
  padding: 0;
}

.links-col li {
  margin-bottom: 5px;
}

.links-col a {
  color: #5a0029;
  text-decoration: none;
  font-size: 12px;
  font-family: 'Mukta', sans-serif;

}

.footer-social a {
  margin-right: 12px;
  font-size: 12px;
  color: #5a0029;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  border-top: 1px solid #ddd;
  padding-top: 15px;
  color: #5a0029;
}

/* Responsivo */
@media (max-width: 768px) {
  .footer-container {
    gap: 30px;
  }
}



/* === Efeito sublinhado no menu (desktop) === */
.nav-menu a {
  position: relative;
  color: #700831;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  padding: 1px 0;
  display: inline-block;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: #ff2d45;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  opacity: 1;
}

/* === Botão do menu mobile === */
.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #ff2d45;
  cursor: pointer;
  gap: 0;
}

.menu-toggle .icon {
  transition: transform 0.2s ease;
  font-size: 2.2rem;
  line-height: 1;
}

/* === Menu Mobile === */
@media (max-width: 768px) {
     .header-container {
        gap: 10px;
        padding: 10px;
        display: flex;
        justify-content: center;
    }

    .logo {
    max-width: 19vh;
}

      .logo img {
        /* max-height: 39px; */
        height: auto;
        width: 90%;
    }

   .menu-toggle {
        display: flex;
    }

 .btn {
        padding: 5px 41px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        font-size: 12px;
    }

      .menu-list {
        width: 130vw;
        background: #f2ecda;
        display: none;
        flex-direction: column;
        margin-left: 1px;
        gap: 10px;
    }

  .nav-menu .menu-list {
    display: none;
  }

  /* Aberto: transforma em lista vertical, full width, sem “ml-60” e sem “gap-40” */
  .nav-menu.open {
    /* Se o seu header for "position: relative", isso abre logo abaixo dele */
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;

    width: 100%;
    background: #f3efe4; /* <- ajuste para o fundo do seu site */
    z-index: 9999;
  }

  .nav-menu.open .menu-list {
    display: flex;
    flex-direction: column;

    /* mata os estilos do desktop (ml-60 / gap-40) */
    gap: 0 !important;
    margin: 0 !important;
    padding: 0;
    width: 100%;
    list-style: none;
  }

  .nav-menu.open .menu-list li {
    width: 100%;
    border-top: 1px solid #ff2d45;
  }

  .nav-menu.open .menu-list li:first-child {
    border-top: none;
  }

  .nav-menu.open .menu-list a {
    display: block;
    width: 100%;
    padding: 18px 20px; /* <- espaçamento como no seu print “correto” */
    font-size: 16px;
    color: #ff2d45;
    font-weight: 500;
    text-decoration: none;
  }

  /* Remove sublinhado/efeito do menu no mobile */
  .nav-menu.open a::after {
    display: none !important;
  }

  /* (Opcional) deixa o botão do menu acima do dropdown */
  .menu-toggle {
    position: relative;
    z-index: 10000;
  }
}


@media (max-width:320px){
      .logo {
        max-width: 14vh;
    }
       .btn {
        padding: 5px 25px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        font-size: 12px;
    }
}

@media (max-width: 425px) {
              .logo {
        max-width: 14vh;
    }
}

@media (max-width: 768px) {
  .home-text {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .title-xl {
    font-size: 35px !important;
    line-height: 1.2 !important;
    text-align: center !important;
    color: #6f1a3b !important;
    margin-bottom: 30px !important;
    margin-top: 20px;
  }

  .home-content p.subtitle {
    color: #ff2d45;
    font-size: 12px;
    letter-spacing: 8px;
    line-height: 2.8;
    text-align: center;
    margin-bottom: 25px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }
}


.icon-svg {
  width: 50px;      /* ou o tamanho que quiser */
  height: auto;     /* mantém proporção */
  margin-bottom: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  fill: white;
}


@media (max-width: 768px){
  .servicos-esquerda h2{
    font-size: 27px;
    text-align: center;
    line-height: 27px;
  }
  .servicos-esquerda .label{
    text-align: center;
    font-size: 13px;
  }
  .servicos-esquerda p{
    text-align: center;
    font-size: 13px;
  }
  .btn-secondary{
    display: block;
    margin: 0 auto;
    width: fit-content;

  }
}

@media (max-width: 768px) {
  .title-lg {
  text-align: center;
  font-size: 30px ;
  margin-top: 0;
  padding-top: 0;
  }

  .quem-somos-texto p {
    text-align: center;
    font-size: 16px;
  }

  .btn-outline {
    display: block;
    margin: 0 auto;
    width: fit-content;
  }

  .logos-partners img {
        height: auto;
        width: 70%;
  }
  
}

.gif-mobile {
  display: none;              /* não mostra no desktop */
 
}

@media (max-width: 768px) {
  .gif-mobile {
    display: block;    
    width: 100%;
    max-width: 650px;
    height: 400px;
    aspect-ratio: 1 / 1;
    border-radius: 4px;
    object-fit: cover;
    transition: transform 0.8s ease;
    padding-top: 70px;       /* mostra no mobile */
  }

  .quem-somos-img img{
    display: none;
  }
}

@media(max-width:768px) {
  .img-full{
   margin-bottom: 10px;
    
  }

  .p-60-20{
    padding: 0px 0px;
  }
}



@media(max-width:768px){

  .quem-somos{
    padding-bottom: 40px;
  }

  .pt-150{
    padding-top: 20px;
  }
}

@media(max-width: 768px) {
  .trabalhos-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    flex-direction: column;
    padding: 0px 10px 10px;
}

.trabalho img {
    height: 450px; /* ou 300px, ajuste conforme quiser */
    object-fit: cover; /* mantém o crop proporcional */
  }
}

@media(max-width: 768px){
  .sessao-contato{
  padding-left: 0;
  padding-right: 0;
  margin: 0;
  }

  .subtitulo{
    font-size: 11px;
    padding-bottom: 20px;
    font-weight: bold;
  }

  .sessao-contato-titulo{
    font-size: 28px ;
  }

  .linha-vermelha {
    width: 100%;
  }
}

@media (max-width: 768px){
  .footer-logo{
    
  }
}

/* Seção Principal - Fundo e Espaçamento */
.secao-grupo-partners {
    background-color: #700831; /* Cor bordô aproximada da imagem */
    padding: 65px 20px;
    font-family: sans-serif; /* Ajuste para a fonte do seu tema */
}

/* Container para segurar os itens em linha */
.container-partners {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
}

/* Área de Texto */
.texto-partners {
    flex: 0 0 auto;
    text-align: center;
}

.texto-partners h2 {
    color: #9CDCDE;
    font-family: "Roboto Serif", Sans-serif;
    font-size: 35px;
    font-weight: 700;
    text-transform: none;
    font-style: normal;
    text-decoration: none;
    line-height: 40px;
    letter-spacing: 0px;
    word-spacing: 0px;
}


.texto-partners p {
   text-align: center;
    color: #F1EDDE;
    font-family: "Mukta", Sans-serif;
    font-size: 20px;
    font-weight: 400;
    text-transform: none;
    font-style: normal;
    text-decoration: none;
    line-height: 25px;
    word-spacing: 0px;
    padding-top: 1rem;
}

/* Área das Logos */
.logos-partners {
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Alinha logos à direita */
    gap: 30px;
    flex: 1;
}

.logos-partners img {
    height: auto;
    width: 70%;
}

.mention img {
  height: auto;
  width: 80%;
}

/* Responsividade (Celular) */
@media (max-width: 768px) {
    .container-partners {
        flex-direction: column;
        text-align: center;
    }
    
    .logos-partners {
        justify-content: center;
        margin-top: 20px;
    }
}

@media (max-width:984px){
  .trabalhos-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0;
    padding: 10px 80px;
}
}
