/* === 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: 1280px; 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: #f2ecda; }
.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: #fff;
  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: #F1EDDE;
}

.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;
  background-color: #F1EDDE;
}

.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;
}

.btn-vermais:hover {
  background-color: #FA2A46;
  color: #fff;
}

.clientes {
  background-color: #f4efe2;
  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;
  overflow: hidden;
  margin: 0 auto;
  border: 2px solid #000;
  padding: 60px 30px; /* padding maior para dar "respiro" */
  box-sizing: border-box;
}

.clientes-track {
  display: flex;
  gap: 30px; /* espaçamento entre logos */
  transition: transform 0.6s ease-in-out;
}

.clientes-slide {
  flex: 0 0 calc((100% - (5 * 40px)) / 6); 
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.clientes-slide img {
  max-height: 100px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.slider img {
  height: 130px; /* aumentamos a altura */
  object-fit: contain;
  filter: grayscale(100%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.slider img:hover {
  transform: scale(1.08);
  filter: grayscale(0%);
}

@keyframes scrollSlider {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.sicoob {
  height: 50px;
  


}

.sessao-contato {
  background-color: #f4efe2;
  text-align: center;
  padding: 60px 20px 0 20px;
  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: #f4efe2;
  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;
}

@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;
    }

    .menu-toggle .icon {
    transition: transform 0.2s ease;
    font-size: 2.2rem;
    line-height: 1;
}

    .btn {
        padding: 5px 25px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        font-size: 12px;
    }

      .menu-list {
        width: 130vw;
        background: #f2ecda;

        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 {
        position: absolute;
        /* left: 100px; */
        right: 2px;
        top: 77%;
        width: 100%;
        background: #f3efe4;
        z-index: auto;
    }

     .nav-menu.open .menu-list {
        display: flex;
        flex-direction: column;
        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 {
    font-size: 2rem;
    background: none;
    border: none;
    color: #ff2d45;
    cursor: pointer;
    gap: 0;
}
}


@media (max-width:320px){
      .logo {
        max-width: 12vh;
    }
          .btn {
        padding: 5px 18px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        font-size: 12px;
    }
}

@media (max-width: 425px) {
              .logo {
        max-width: 12vh;
    }

}

@media (max-width: 320px) {
  .header-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    height: 100px;
    gap: 0;
  }
}

@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;
  }
  
}

.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{
    
  }
}



/* quem somos pagina */

.valores-section {
  background-color: #F1EDDE;
  padding: 100px 20px 120px; /* Aumentado o espaçamento vertical */
  font-family: 'Inter', sans-serif;
  text-align: center;
}

.valores-header {
  margin-bottom: 130px;
  margin-top: 145px;/* Mais espaçamento abaixo do título */
}

.valores-subtitulo {
  color: #FA2A46;
  font-weight: 600;
  letter-spacing: 5px;
  font-size: 17px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.valores-titulo {
  font-size: 58px;
  font-family: Roboto serif;
  font-weight: bold;
  color: #700831;
  margin: 0;
}

.valores-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.valor-card {
  flex: 1 1 300px;
  border: 2px solid #ff0033;
  padding: 80px 50px;
  background-color: #F1EDDE;
  max-width: 470px;
}

.valor-titulo {
  font-size: 26px;
  font-family: 'Inter';
  color: #560028;
  margin-bottom: 15px;
}

.valor-texto {
  color: #e0002d;
  font-size: 15.5px;
  line-height: 1.6;
  font-family: 'Mukta';
  letter-spacing: -0.5px;
}

.equipe-section {
  background-color: #F1EDDE;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 40px;  /* antes era 180px 20px */
}

.equipe-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.equipe-texto {
  font-family: 'Roboto Serif', serif; /* mesma família usada nos títulos */
  font-weight: 700;
  color: #700831;                     /* vinho/bordô do site */
  text-align: center;
  font-size: 66px;                    /* tamanho grande para desktop */
  line-height: 1.1;
  letter-spacing: -0.3px;
  margin-bottom: 20px;
}

/* Responsivo */
@media (max-width: 1024px) {
  .equipe-section { padding: 140px 20px; }
  .equipe-texto   { font-size: 52px; }
}

@media (max-width: 768px) {
      .equipe-section {
        padding: 25px 16px;
    }
      .equipe-texto {
        font-size: 28px;
    }
    .valores-section {
    background-color: #F1EDDE;
    padding: 30px 20px 90px;
    font-family: 'Inter', sans-serif;
    text-align: center;
}
.valores-subtitulo {
    color: #FA2A46;
    font-weight: 600;
    letter-spacing: 5px;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.valores-titulo {
    font-size: 28px;
    font-family: Roboto serif;
    font-weight: bold;
    color: #700831;
    margin: 0;
}
.valores-header {
    margin-bottom: 80px;
    margin-top: 145px;
}
}


/* === Seção Time / Membros === */
.time-section {
  background-color: #F1EDDE;
  padding: 80px 20px 120px;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.membro-foto {
  width: 100%;
  height: 360px;               /* altura próxima ao print */
  overflow: hidden;
  background: #ddd;
}

.membro-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.membro-nome {
  margin-top: 22px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #FA2A46;              /* vermelho do site */
  letter-spacing: 6px;
  font-size: 18px;
  text-transform: uppercase;
}

.membro-cargo {
  margin-top: 6px;
  text-align: center;
  font-family: 'Mukta', sans-serif;
  color: #FA2A46;
  font-size: 14px;
  font-weight: 500;
}

/* Responsivo */
@media (max-width: 1024px) {
  .time-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .membro-foto { height: 320px; }
}

@media (max-width: 640px) {
     .time-grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }
  .membro-foto { height: 300px; }
  .membro-nome { font-size: 16px; letter-spacing: 5px; }
  .membro-cargo { font-size: 13px; }
  .time-section {
    background-color: #F1EDDE;
    padding: 0px 20px 120px;
}
}



/* Linha vermelha do topo do footer */
.linha-vermelha {
  height: 2px;
  background-color: #FA2A46; /* vermelho */
  width: 100%;
  margin: 0;
}

/* Footer – ajustes para o layout do print */
.footer {
  background-color: #F1EDDE;
  padding: 50px 20px 10px;
  font-family: 'Inter', sans-serif;
  color: #5a0029;
  margin: 0;                 /* sem margem externa */
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1300px;
  margin: 0 auto;
  gap: 60px;                 /* respiro entre colunas */
}

.footer-col {
  flex: 1 1 320px;           /* 3 colunas com boa largura */
  min-width: 280px;
}

.footer-logo {
  height: 44px;
  margin-bottom: 18px;
}

.footer-title {
  color: #700831;
  font-weight: 700;
  letter-spacing: 8px;       /* espaçamento grande como no print */
  font-size: 16px;
  margin: 8px 0 18px;
}

.footer-privacidade {
  display: inline-block;
  color: #c1002b;
  font-weight: 600;
  text-decoration: none;
  margin: 8px 0 14px;
  font-size: 13px;
}

.footer-privacidade:hover { text-decoration: underline; }

.footer-dpo-link {
  color: #c1002b;
  text-decoration: none;
  font-weight: 600;
}

.footer-dpo-link:hover { text-decoration: underline; }

.footer-text {
  font-size: 13px;
  line-height: 1.6;
  color: #5a0029;
  margin: 6px 0;
}

/* Lista de links */
.links-col ul { list-style: none; padding: 0; }
.links-col li { margin-bottom: 10px; }
.links-col a {
  color: #700831;
  text-decoration: none;
  font-size: 14px;
}
.links-col a:hover { text-decoration: underline; }

/* Redes sociais */
.footer-social a {
  margin-right: 16px;
  font-size: 22px;
  color: #700831;
  text-decoration: none;
}
.footer-social a:hover { opacity: 0.8; }

.footer-bottom {
  text-align: center;
  margin-top: 18px;
  font-size: 13px;
  color: #5a0029;
}

/* Responsivo */
@media (max-width: 980px) {
  .footer-container { gap: 40px; }
  .footer-title { letter-spacing: 7px; }
}

@media (max-width: 640px) {
  .footer-col { min-width: 100%; }
  .footer-title { letter-spacing: 6px; }
  .footer-logo { height: 38px; }
}

