





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


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-top: 0px; /* Adiciona espaçamento ao redor do container */
    width: 100%; /* Garante que ocupe a largura total da tela */
    box-sizing: border-box;
    margin-top: 4%;
}



@media (max-width: 768px) {
    .filters{
        padding-top: 50px; /* Adiciona espaçamento ao redor do container */
    }
    
    .filters button{
        padding: 0px; /* Adiciona espaçamento ao redor do container */
    }

}

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


/* 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(3, 1fr); /* 3 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: auto; /* A altura será ajustada automaticamente */
}

/* Ajuste para garantir que as imagens sejam retangulares */
.item img {
    width: 100%;
    height: 500px; /* Definindo uma altura fixa para que a imagem seja retangular */
    object-fit: cover; /* Garante que a imagem cubra toda a área sem distorcer */
    transition: transform 0.3s ease;
    cursor: pointer;
}

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

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






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














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