
/* Resetando os estilos básicos */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Urbanist', sans-serif;
    scroll-behavior: smooth;
    height: 100%;
    font-family: 'Urbanist', sans-serif;
}
    * {
        box-sizing: border-box;
    }
.dm-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: linear-gradient(
        to bottom,
        rgba(20, 20, 20, 0.744) 0%,
        rgba(7, 4, 4, 0.377) 45%,
        rgba(0, 0, 0, 0.174) 75%,
        rgba(255, 255, 255, 0) 100%
    );
    box-shadow: none;
    border-bottom: none;
}

    .dm-header__inner {
        width: 100%;
        margin: 0;
        min-height: 64px;
        padding: 0 12px 0 8px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    .dm-header__left {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        min-width: 240px;
        flex: 1;
    }

    .dm-header__brand {
        display: inline-flex;
        align-items: center;
        text-decoration: none;
        margin-left: 0;
        padding-left: 0;
    }

    .dm-header__brand img {
        height: 30px;
        width: auto;
        display: block;
    }

    .dm-header__center {
        display: flex;
        justify-content: center;
        flex: 2;
    }

    .dm-header__nav {
        display: flex;
        align-items: center;
        gap: 38px;
    }

    .dm-header__nav a,
    .dm-header__dropbtn {
        color: #ffffff;
        text-decoration: none;
        font-family: 'Urbanist', sans-serif;
        font-size: 16px;
        font-weight: 400;
        opacity: 0.96;
        transition: color 0.25s ease, opacity 0.25s ease;
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
        white-space: nowrap;
    }

    .dm-header__nav a:hover,
    .dm-header__dropbtn:hover {
        color: #ff4a4a;
        opacity: 1;
    }

    .dm-header__dropdown {
        position: relative;
    }

    .dm-header__dropdown-menu {
        position: absolute;
        top: calc(100% + 12px);
        left: 50%;
        transform: translateX(-50%);
        min-width: 190px;
        background: rgba(255,255,255,0.98);
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        padding: 8px 0;
        display: none;
    }

    .dm-header__dropdown:hover .dm-header__dropdown-menu {
        display: block;
    }

    .dm-header__dropdown-menu a {
        display: block;
        color: #222;
        padding: 10px 16px;
        font-size: 14px;
        white-space: nowrap;
    }

    .dm-header__dropdown-menu a:hover {
        color: #d90000;
        background: rgba(0,0,0,0.03);
    }

    .dm-header__right {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 14px;
        min-width: 240px;
        flex: 1;
    }

    .dm-header__social {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        text-decoration: none;
        font-size: 14px;
        width: 22px;
        height: 22px;
        opacity: 0.96;
        transition: color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
    }

    .dm-header__social:hover {
        color: #ff4a4a;
        transform: translateY(-1px);
        opacity: 1;
    }

    .dm-header__lang {
        display: inline-flex;
        align-items: center;
        gap: 15px;
        margin-left: 6px;
    }

    .dm-header__lang a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        opacity: 0.96;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .dm-header__lang a:hover {
        transform: scale(1.08);
        opacity: 1;
    }

    .dm-header__lang img {
        width: 15px;
        height: 15px;
        object-fit: cover;
        border-radius: 50%;
        display: block;
    }

    .dm-header__toggle {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        width: 30px;
        height: 22px;
        position: relative;
    }

    .dm-header__toggle span,
    .dm-header__toggle::before,
    .dm-header__toggle::after {
        content: "";
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background: #fff;
        border-radius: 999px;
        transition: 0.25s ease;
    }

    .dm-header__toggle span {
        top: 10px;
    }

    .dm-header__toggle::before {
        top: 2px;
    }

    .dm-header__toggle::after {
        bottom: 2px;
    }

    .dm-header-spacer {
        height: 64px;
    }

    @media (max-width: 1100px) {
        .dm-header__inner {
            min-height: 64px;
            padding: 0 12px;
        }

        .dm-header-spacer {
            height: 64px;
        }

        .dm-header__toggle {
            display: block;
        }

        .dm-header__center {
            position: absolute;
            top: 64px;
            left: 0;
            width: 100%;
            background: rgba(22,22,22,0.98);
            display: none;
            padding: 20px;
        }

        .dm-header__center.is-open {
            display: flex;
        }

        .dm-header__nav {
            width: 100%;
            flex-direction: column;
            gap: 18px;
            align-items: center;
        }

        .dm-header__dropdown-menu {
            position: static;
            transform: none;
            margin-top: 10px;
        }

        .dm-header__left,
        .dm-header__right {
            min-width: auto;
            flex: 0;
        }
    }

    @media (max-width: 768px) {
        .dm-header__brand img {
            height: 24px;
        }

        .dm-header__inner {
            min-height: 58px;
        }

        .dm-header-spacer {
            height: 58px;
        }

        .dm-header__center {
            top: 58px;
        }

        .dm-header__right {
            gap: 8px;
        }

        .dm-header__social {
            font-size: 12px;
            width: 18px;
            height: 18px;
        }

        .dm-header__lang img {
            width: 13px;
            height: 13px;
        }
    }



.filters-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 30px;
  gap: 20px;
  margin-top: 30px;
  padding-left: 300px;
}

/* 80% para filtros */
.filters-left {
  flex: 1 1 75%;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}


.filters-row {
  display: flex;
  flex-wrap: nowrap;              /* NUNCA quebra de linha */
  justify-content: flex-start;    /* começa da esquerda */
  gap: 10px;
  overflow-x: auto;               /* se não couber, rola pro lado */
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch; /* scroll suave no mobile */
}


.filters-row button {
  background: none;
  border: none;
  color: black;
  font-size: clamp(10px, 1.1vw, 15px); /* diminui de forma gradual */
  cursor: pointer;
  position: relative;
  padding: 8px 15px;
  transition: color 0.3s ease;
  white-space: nowrap;   /* não deixa quebrar texto dentro do botão */
}

.filters-row::-webkit-scrollbar {
  display: none;
}




.filters-row button::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  height: 2px;
  background-color: red;
  transition: width 0.3s ease, left 0.3s ease;
}

.filters-row button:hover {
  color: red;
}

.filters-row button:hover::after {
  width: 100%;
  left: 0;
}
 
.filters-row button.filtro-titulo {
  font-weight: bold;
  font-size: clamp(12px, 1.4vw, 18px); /* 18px no desktop, vai descendo até ~12px no mobile */
}

@media (max-width: 768px) {
  .filters-row {
    flex-wrap: nowrap;      /* não deixa pular pra segunda linha */
    justify-content: flex-start;
    overflow-x: auto;       /* ativa scroll horizontal */
    -webkit-overflow-scrolling: touch;
    gap: 8px;               /* um pouco menor pra caber melhor */
  }

  /* esconder barra de rolagem sem mudar o visual */
  .filters-row::-webkit-scrollbar {
    display: none;
  }
}








/* SEARCH WRAPPER */
/* 20% para busca */
.search-wrapper {
  flex: 1 1 25%;
  min-width: 200px;
  max-width: 250px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}

.search-wrapper input {
  width: 100%;
  padding: 10px 40px 10px 15px;
  margin-top: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 14px;
  outline: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.search-wrapper .search-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 18px;
  color: red;
  cursor: pointer;
  padding: 0;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .filters-container {

    align-items: center;
  }

  .search-wrapper {
    width: 100%;
    max-width: 300px;
    margin-top: 15px;
  }

  .filters-left {
    align-items: center;
  }
}


.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.item {
  position: relative;
  overflow: hidden;
}

.item img {
  width: 100%;
  height: 400px; /* Aumente conforme desejar: 400px, 500px, etc. */
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}


.item:hover img {
  transform: scale(1.05);
}

/* Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6); /* máscara escura */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.item:hover .overlay {
  opacity: 1;
}

.image-name {
  color: white;
  font-size: 18px;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  padding: 10px 20px;
  border-radius: 4px;
}









/* Estilos do Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    text-align: center;
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 90%;
    max-height: 80%;
    margin-top: 5%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.3s ease;
}

/* Close button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Responsividade - 3 imagens por fileira em telas maiores */
@media (max-width: 1200px) {
    .gallery {
        grid-template-columns: repeat(3, 1fr); /* 3 imagens por fileira */
    }
}

@media (max-width: 992px) {
    .gallery {
        grid-template-columns: repeat(3, 1fr); /* 3 imagens por fileira */
    }
}

@media (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(3, 1fr); /* 3 imagens por fileira */
    }
}

@media (max-width: 576px) {
    .gallery {
        grid-template-columns: repeat(1, 1fr); /* 1 imagem por fileira em telas muito pequenas */
    }
}




/* Rodapé */
.rodape {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    width: 100%;


}

/* Certifique-se de que a imagem do rodapé tenha o tamanho correto */
.rodape img {
    width: 3vh;
    height: auto;
}

.rodape p{
    margin: 0;
}

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

body, html {
    height: 100%; /* Garantir que a página ocupe 100% da altura */
    margin: 0; /* Remover qualquer margem extra */
}

/* Principal contêiner para carrossel e rodapé */
.main-section {
    width: 100%;
    height: 100vh; /* Garantir que ocupe 100% da altura da janela */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Garante que o carrossel fique colado ao topo */
}



/* Rodapé */
.rodape {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    width: 100%;
padding: 1% 0;

}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Ou ajuste a altura conforme necessário */
    z-index: -1; /* Coloca as partículas atrás do conteúdo */
}

/* Estilo geral da lista */
.ul-1 {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
    flex-wrap: wrap; /* Permite que os itens quebrem linha se necessário */
    justify-content: center; /* Centraliza os itens da lista */
}

/* Estilo para cada item da lista no rodapé */
.lista-1 {
    display: flex;
    align-items: center;
    font-size: 15px;
    gap: 4px;
}

/* Estilo dos ícones */
.lista-1 i {
    font-size: 15px;
    color: #ff0000;
}

/* Tornar os itens responsivos em telas menores */
@media (max-width: 768px) {
    .ul-1 {
        gap: 10px; /* Reduz o espaçamento entre os itens */
    }

    .lista-1 {
        font-size: 14px; /* Reduz o tamanho da fonte para telas menores */
    }

    .lista-1 i {
        font-size: 14px; /* Reduz o tamanho dos ícones */
    }
}

/* Para dispositivos muito pequenos (como smartphones verticais), ajuste ainda mais */
@media (max-width: 480px) {
    .ul-1 {
        flex-direction: column; /* Organiza os itens em coluna */
        gap: 8px; /* Ajusta o espaço entre os itens */
    }

    .lista-1 {
        font-size: 13px; /* Reduz o tamanho da fonte ainda mais */
        justify-content: center; /* Garante que os itens fiquem centralizados */
    }

    .lista-1 i {
        font-size: 13px; /* Reduz o tamanho dos ícones */
    }
}


  

.search-wrapper {
    position: relative;
    width: 100%;
    height: 3%;
    max-width: 250px;
    margin: 0px auto;
    display: flex;
    justify-content: center;
    max-height: 100px;
  }
  
  #search-input {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }
  
  .search-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 18px;
    color: red;
    cursor: pointer;
    padding: 0;
  }
  

  /* Ajuste para telas menores que 768px (mobile) */


  @media (max-width: 992px) {
  .filters-container {
    padding: 30px 20px !important;
    justify-content: center !important;
  }

  .filters-left {
    flex: 1 1 100% !important;
    align-items: center !important;
  }

  .search-wrapper {
    flex: 1 1 100% !important;
    justify-content: center !important;
    margin-top: 20px !important;
  }
}






:root{
  --bg: #f7f8fa;          /* cinza bem claro */
  --panel: #ffffff;       /* branco cartões */
  --text: #202124;        /* preto suave */
  --muted: #6b7280;       /* cinza médio */
  --line: #e5e7eb;        /* divisória */
  --accent: #e10600;      /* vermelho DM */
}

.footer.light{
  background: var(--bg);
  color: var(--text);
  padding: 56px 5% 28px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;

  /* Linha superior centralizada */
  border-top: none; /* remove a antiga linha total */
  position: relative;
}

.footer.light::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 2600px);     /* controla comprimento da linha */
  height: 1px;                /* espessura */
  background: var(--accent);  /* vermelho DM */
  border-radius: 1px;
}


.footer-container{
  display: grid;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  gap: 28px 36px;
}

.footer-column{
  background: var(--panel);
background-color: #00000000;
}

.footer-column h3{
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(225,6,0,.15);          /* sublinhado vermelho suave */
}

.footer-column ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li{
  margin: 8px 0;
  font-size: 15px;
  color: var(--muted);
}

.footer-column a{
  color: var(--text);
  text-decoration: none;
  position: relative;
}

.footer-column a::after{
  content:"";
  position:absolute;
  left:0; bottom:-2px;
  width:0; height:2px;
  background: var(--accent);
  transition: width .25s ease;
}
.footer-column a:hover::after{ width:100%; }
.footer-column a:hover{ color: var(--accent); }

.footer-column p{
  font-size: 14px;
  color: var(--muted);
  margin: 6px 0;
}

.footer-logo{
  display:flex;
  justify-content:center;
  margin: 17px 0 14px;
}
.footer-logo img{
  width: 120px;      /* ajusta se quiser maior/menor */
  height:auto;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,.08));
  transition: transform .25s ease;
}
.footer-logo img:hover{ transform: scale(1.03); }

.footer-bottom {
  display: flex;                     /* coloca lado a lado */
  justify-content: center;           /* centraliza o conjunto no meio */
  align-items: center;
  gap: 8px;                          /* espaçamento entre logo e texto */
  color: var(--muted);
  font-size: 14px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  width: min(60%, 900px);            /* mantém linha curta e centralizada */
  margin: 40px auto 0;
  border-radius: 2px;
}

.footer-bottom img {
  width: 100px;                       /* ajusta o tamanho da logo */
  height: auto;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,.1));
  margin-right: 6px;
}

.footer-bottom p{
  margin-bottom: 0;
}

/* Responsivo */
@media (max-width: 1200px){
  .footer-container{ grid-template-columns: repeat(3, minmax(160px, 1fr)); }
}
@media (max-width: 768px){
  .footer-container{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px){
  .footer-container{ grid-template-columns: 1fr; }
  .footer{ padding-left: 4%; padding-right: 4%; }
}

.footer-column ul.duas-colunas {
  columns: 2;            /* define duas colunas */
  column-gap: 12px;      /* diminui o espaçamento entre elas */
  text-align: left;
}

.footer-column ul.duas-colunas li {
  break-inside: avoid;   /* evita quebra feia entre colunas */
  margin: 0px 0 10px 0px;
}

.social-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-list li {
  margin: 6px 0;
}

.social-list a {
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;                   /* espaço entre ícone e texto */
  transition: color 0.25s ease;
}

.social-list a i {
  color: var(--accent);       /* vermelho DM */
  font-size: 16px;
  transition: transform 0.25s ease, color 0.25s ease;
}

.social-list a:hover {
  color: var(--accent);
}

.social-list a:hover i {
  transform: scale(1.15);
}


.footer-column a::after { display: none; }

