/* Resetando os estilos básicos */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Urbanist', sans-serif;
    scroll-behavior: smooth;
    height: 100%;
}

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

/* Estilos para os ícones */
.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-right: 20px;
    margin-bottom: 2px;

  }
  
  .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 {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    text-align: center;
}

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

/* Centralizar os filtros */
.filters {
    display: flex;
    justify-content: center; /* Centraliza horizontalmente */
    gap: 15px; /* Espaço entre os botões */
    flex-wrap: wrap; /* Permite que os botões quebrem para a linha seguinte em telas pequenas */
    margin-top: 6vh;
}

/* Estilo dos botões de filtro */
button {
    background: none;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    transition: color 0.3s, border-bottom 0.3s, box-shadow 0.3s;
    text-decoration: none;
}


@media (max-width: 768px) {
    .filters {
        gap: 15px; /* Espaço entre os botões */
        margin-top: 8vh;
        font-size: 15px;
    }

    button{
        padding: 0px;
    }

}


/* 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(9, 1fr); /* 9 imagens por fileira */
    gap: 0; /* Remove o espaço entre as imagens */
    padding-top: 20px;
    justify-items: center;
}

/* Estilo das imagens */
.item {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 0;
    padding-bottom: 100%; /* Criando uma proporção de 1:1 para tornar as imagens quadradas */
}

/* Ajuste para garantir que as imagens sejam quadradas */
.item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ajuste para evitar corte - faz com que a imagem se ajuste ao tamanho sem cortar */
    transition: transform 0.3s ease;
    cursor: pointer;
}

/* Efeito de zoom nas imagens */
.item:hover img {
    transform: scale(1.4);
}

/* Efeito de sobreposição */
.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;
}

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

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

.modal-content {
    max-width: 500px;
    max-height: 500px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 15px #fff;
}


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



/* Ajuste para telas menores que 768px (mobile) */
@media (max-width: 768px) {
    #langToggle {
      margin-right: 68px; /* ou use negativo: margin-left: -10px */
padding-bottom: 2px;
    }
  }



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












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

