.elementor-777 .elementor-element.elementor-element-fb493cc{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:64px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}body.elementor-page-777:not(.elementor-motion-effects-element-type-background), body.elementor-page-777 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}:root{--page-title-display:none;}@media(min-width:1601px){.elementor-777 .elementor-element.elementor-element-fb493cc{--width:100%;--margin-top:47px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}}@media(max-width:1180px){.elementor-777 .elementor-element.elementor-element-fb493cc{--margin-top:49px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}}@media(max-width:767px){.elementor-777 .elementor-element.elementor-element-fb493cc{--margin-top:37px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}}/* Start custom CSS for container, class: .elementor-element-fb493cc *//* === ESTILOS GERAIS (DESKTOP) === */
body {
  margin: 0;
  background: #000;
  font-family: 'Calibri', sans-serif;
}

.galeria {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.linha {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  border-bottom: 2px solid #ccc;
  padding: 0;
  min-height: 220px;
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
}

.linha.centro {
  justify-content: center;
}

.linha.direita {
  justify-content: flex-end;
}

.imagem-container {
  position: relative;
  display: inline-block;
  margin: 0;
}

.imagem-container img {
  width: 100%;
  max-width: 410px;
  height: 300px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.5s ease;
}

/* LEGENDAS */
.legenda {
  position: absolute;
  color: white;
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity 0.5s ease;
  bottom: 0;
  width: auto;
  white-space: nowrap;
  padding: 5px 0;
}

/* 1ª IMAGEM - LEGENDA À DIREITA */
.linha.esquerda .legenda {
  left: 100%;
  margin-left: 20px;
  text-align: left;
}

/* 2ª e 3ª IMAGENS - LEGENDA À ESQUERDA */
.linha.centro .legenda,
.linha.direita .legenda {
  right: 100%;
  margin-right: 20px;
  text-align: right;
}

/* HOVER EFFECTS */
.imagem-container:hover .legenda {
  opacity: 1;
}

.imagem-container:hover img {
  filter: grayscale(0%);
}

/* === WIDESCREEN (acima de 1440px) === */
@media (min-width: 1441px) {
  .linha {
    justify-content: flex-start;
  }
  
  .linha.centro {
    justify-content: center;
  }
  
  .linha.direita {
    justify-content: flex-end;
  }
  
  .imagem-container img {
    max-width: 520px; /* Imagens um pouco maiores em widescreen */
    height: 250px;
  }
  
  /* Ajuste de legendas para widescreen */
  .linha.esquerda .legenda {
    left: 100%;
    margin-left: 30px;
  }
  
  .linha.centro .legenda,
  .linha.direita .legenda {
    right: 100%;
    margin-right: 30px;
  }
}

/* === TABLET (768px a 1024px) === */
@media (max-width: 1024px) and (min-width: 769px) {
  .linha {
    flex-wrap: wrap;
    justify-content: space-between;
    min-height: auto;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  
  .imagem-container {
    width: 49%;
    margin-bottom: 3px;
  }
  
  .imagem-container img {
    max-width: 100%;
    height: 200px;
  }
  
  /* Centraliza legendas no tablet */
  .legenda {
    font-size: 1.3rem;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 90%;
    white-space: normal;
  }
  
  .linha.esquerda .legenda,
  .linha.centro .legenda,
  .linha.direita .legenda {
    left: 50%;
    right: auto;
    margin-left: 0;
    margin-right: 0;
    transform: translateX(-50%);
  }
}

/* === MOBILE (até 768px) === */
@media (max-width: 768px) {
  .linha {
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid #ccc;
    min-height: auto;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  
  .imagem-container {
    width: 100%;
    margin-bottom: 0;
    border-bottom: none;
  }
  
  .imagem-container img {
    max-width: 100%;
    height: 180px;
  }
  
  /* Ajuste de legendas para mobile */
  .legenda {
    font-size: 1.2rem;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 90%;
    white-space: normal;
  }
  
  .linha.esquerda .legenda,
  .linha.centro .legenda,
  .linha.direita .legenda {
    left: 50%;
    right: auto;
    margin-left: 0;
    margin-right: 0;
    transform: translateX(-50%);
  }
}

/* === CELULARES PEQUENOS (até 480px) === */
@media (max-width: 480px) {
  .imagem-container img {
    height: 150px;
  }
  
  .legenda {
    font-size: 1rem;
    bottom: 10px;
  }
}/* End custom CSS */