/* 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;


}
body > *:not(.rodape) {
    flex: 1;
  }

/* Esconde o submenu por padrão */
.nav-item.dropdown .dropdown-menu {
    display: none;
}

/* Exibe o submenu quando o mouse passa sobre o item "Sobre" */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    position: absolute; /* Garante que o submenu não afete o layout */
    background-color: #fff; /* Cor de fundo do submenu */
    border: 1px solid #ddd; /* Borda do submenu */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra para o submenu */
}

/* Estilo para os itens do submenu */
.nav-item.dropdown .dropdown-menu a {
    padding: 10px 20px; /* Espaçamento interno */
    color: #333; /* Cor padrão dos itens do submenu */
    text-decoration: none; /* Remove underline */
}

/* Estilo de hover para os itens do submenu (apenas texto fica vermelho) */
.nav-item.dropdown .dropdown-menu a:hover {
    color: red; /* Cor do texto quando passar o mouse */
    background-color: transparent; /* Remove a cor de fundo */
}

/* Navbar fixa no topo da página */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-image: linear-gradient(to bottom, #000000a9, transparent);
    z-index: 1000;
    padding: 10px 20px;
}

/* Tamanho do logo */
.navbar-brand img {
    height: 30px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Efeito de hover no logo */
.navbar-brand img:hover {
    opacity: 0.5;
    transform: scale(1.1);
}

/* Estilo de navegação */
.navbar-nav {
    display: flex;
    list-style-type: none;
    flex-grow: 1;
    justify-content: center;
}

/* Estilo para os links */
.navbar-nav .nav-item {
    margin-left: 20px;
    margin-right: 20px;
}

.navbar-nav .nav-link {
    color: white;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
}

.navbar-nav .nav-link:hover {
    color: #ff3838;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ff3838;
    transform: scaleX(0);
    transition: transform 0.3s ease-out;
}

.navbar-nav .nav-link:hover::after {
    transform: scaleX(1);
}

.social-icons {
    display: flex;
    justify-content: center; /* ou flex-start / flex-end */
    gap: 3px;


}

.social-icon {
    font-size: 20px;
    color: white;
    background-color: transparent;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
    
}

.social-icon:hover {
    background-color: red;
}

.social-icon i {
    color: white;
    font-size: 14px; /* diminua esse valor para reduzir o ícone */
}


#langToggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    padding-left: 10px;

  }
  
  .lang-icon{
    margin-bottom: 5px;
  }
  

/* Estilo para o botão de hambúrguer */
.navbar-toggler {
    position: absolute;     /* ou fixed, se quiser que fique sempre visível */
    right: 10px;            /* Alinhado à direita */
    top: 25px;              /* Aumente esse valor para descer mais */
    border: none;
    background-color: transparent;
    padding: 5px;
    width: 70px;
    z-index: 999;
}


/* Estilo das barras do hambúrguer */
.navbar-toggler-icon {
    background-color: red;
    padding-top: 20px;
    width: 50vh;
    height: 1px;
    border-radius: 5px;
    display: block;
    position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    background-color: red;
    height: 3px;
    width: 100%;
    border-radius: 3px;
    position: absolute;
    left: 0;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}


/* Responsividade - Navbar no celular */
@media (max-width: 768px) {
    /* Navbar collapsible */
    .navbar-nav {
        flex-direction: column;
        align-items: center;
        margin-top: 10px;
    }

    /* Ajustar os itens do menu */
    .navbar-nav .nav-item {
        margin-left: 0;
        margin-right: 0;
        padding: 10px 0;
    }

    /* Esconder os ícones sociais em telas pequenas */
    .social-icons {
        display: none;
    }
}


/* Estilo geral */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Urbanist', sans-serif;
    scroll-behavior: smooth;
    height: 100%;
    font-family: 'Urbanist', sans-serif;
}

h1 {
    margin: 0;
    padding-top: 20px;
}

/* Estilo específico para o botão com a classe 'small-button' */
.small-button {
    padding: 5px 10px; /* Ajuste do padding para diminuir o tamanho */
    font-size: 20px; /* Ajuste do tamanho da fonte, caso necessário */
}

.small-button img {
    width: 65px; /* Ajuste o tamanho da imagem dentro do botão */
    height: auto; /* Mantém a proporção da imagem */
    padding-top: 20px;
}


/* Centralizar os filtros */
.filters {
    display: flex;
    justify-content: space-between; /* Distribui igualmente os itens na linha */
    gap: 10px; /* Espaço entre os botões */
    flex-wrap: no-wrap; /* Garantir que não quebre para a linha seguinte */
    padding: 20px; /* Adiciona espaçamento ao redor do container */
    width: 100%; /* Garante que ocupe a largura total da tela */
    box-sizing: border-box;
    margin-top: 4vh;
}


/* Estilo dos botões de filtro */
button {
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 16px;
    transition: color 0.3s, border-bottom 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1; /* Faz com que os botões ocupem o mesmo espaço */
}


@media (max-width: 768px) {
    .filters {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-top: 65px;
        padding: 10px;
    }

    .filters button {
        width: 23%;  /* 4 por linha com margem entre elas */
        padding: 5px;
        flex: none; /* impede que cresça igualmente */
    }

    button img {
        width: 100%; /* garante que a imagem ocupe toda a largura do botão */
        height: auto;
    }

    .small-button img{
        height: 30px;
        width: 30px;
        padding: 0;
        margin-top: 10px;
    }
}






/* Estilo das imagens dentro dos botões */
button img {
    width: 100%;  /* Assegura que a imagem ocupe 100% da largura disponível */
    height: auto; /* Mantém a proporção da imagem */
    max-width: 100%; /* Evita que a imagem ultrapasse o tamanho do botão */
    transition: transform 0.3s ease;
}


/* Efeito ao passar o mouse */
button:hover {
    color: red;
}

/* Adiciona uma linha animada embaixo do botão quando passa o mouse */
button::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: red;
    transition: width 0.3s ease;
}

button:hover::after {
    width: 100%;
}

/* Remover a borda preta ao clicar */
button:focus {
    outline: none; /* Remove a borda de foco */
    box-shadow: none; /* Remove qualquer sombra de foco */
}

/* Estilos da Galeria */
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 0px 20px 0 20px;
    justify-items: center;
    align-items: stretch; /* Garante que os itens ocupem altura uniforme */
}

.item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    width: 100%;
    height: 200px;
    box-sizing: border-box; /* Garante que padding/border não quebrem o grid */
}

.item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
    display: block;
}

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

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    background-color: rgba(0, 0, 0, 0.4);
    text-align: center;
    padding: 5px;
    pointer-events: none; /* 👈 ESSENCIAL! */
    z-index: 1;
}


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

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
}



.modal-content {
    display: block;
    width: auto;
    height: auto;
    max-width: 100vw;
    max-height: 100vh;
    object-fit: contain;
    margin: auto;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}



.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;
}

/* Estilo para os filtros */
.filtro {
    display: inline-block;
    margin: 15px;
    max-width: 12%;
    box-sizing: border-box;
    overflow: hidden;
}

.filtro img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.filtro img:hover {
    transform: scale(0.9);
    filter: saturate(100%);
}

/* Responsividade dos filtros */
@media (max-width: 1200px) {
    .gallery {
        grid-template-columns: repeat(3, 1fr);
    }
    .filtro {
        max-width: 22%;
    }
}

@media (max-width: 992px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    .filtro {
        max-width: 30%;
    }
}

@media (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    .filtro {
        max-width: 45%;
    }
}

@media (max-width: 576px) {
    .gallery {
        grid-template-columns: 1fr;
    }
    .filtro {
        max-width: 100%;
        margin: 10px 0;
    }
}




/* 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;
}

/* Estilo para a lista no rodapé */


/* Resetando as margens e o padding para toda a página */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



/* 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: 95%;
    max-width: 250px;
    margin: 30px auto;
    display: flex;
    justify-content: center;
    max-height: 100px;
  }
  
  #search-input {
    width: 100%;
    margin-top: 30px;
    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%;
    margin-top: 15px;
    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: 768px) {
    #langToggle {
      margin-right: 68px; /* ou use negativo: margin-left: -10px */
padding-bottom: 2px;
    }
  }


.item img {
  width: 100%;
  height: 200px; /* ou 298px */
  object-fit: cover;
}
#imageModal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
#imageModal img {
  max-width: 90%;
  max-height: 90%;
}




: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; }
