.elementor-211 .elementor-element.elementor-element-6d9780a{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-211 .elementor-element.elementor-element-6d9780a:not(.elementor-motion-effects-element-type-background), .elementor-211 .elementor-element.elementor-element-6d9780a > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#54041C;}.elementor-211 .elementor-element.elementor-element-da2e6af{--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;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:250px;}.elementor-211 .elementor-element.elementor-element-da2e6af.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-211 .elementor-element.elementor-element-5e140dd{--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;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:150px;}.elementor-211 .elementor-element.elementor-element-34d0b16{--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;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(max-width:767px){.elementor-211 .elementor-element.elementor-element-6d9780a.e-con{--align-self:center;}.elementor-211 .elementor-element.elementor-element-da2e6af{--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );}.elementor-211 .elementor-element.elementor-element-da2e6af.e-con{--align-self:center;}}@media(min-width:768px){.elementor-211 .elementor-element.elementor-element-6d9780a{--content-width:1200px;}.elementor-211 .elementor-element.elementor-element-da2e6af{--width:20.467%;}.elementor-211 .elementor-element.elementor-element-5e140dd{--width:33%;}.elementor-211 .elementor-element.elementor-element-34d0b16{--width:33%;}}/* Start custom CSS for container, class: .elementor-element-6d9780a *//* GERAL DO RODAPÉ */
.footer-custom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px 20px;
  background-color: #54041C;
  color: white;
  font-family: 'Poppins', sans-serif;
}

/* COLUNAS */
.footer-custom > div {
  flex: 1 1 30%;
  min-width: 200px;
}

/* TÍTULOS DAS COLUNAS */
.footer-custom p:first-child {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px; /* menor espaçamento abaixo do título */
}

/* FRASE DA MARCA E NOME */
.footer-brand-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-brand-name {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

/* LISTAS */
.footer-custom ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-custom li {
  margin-bottom: 6px; /* reduzido */
}

.footer-custom a {
  color: white;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

/* HOVER MINIMALISTA */
.footer-custom a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: #ddd;
  transition: width 0.3s ease;
}

.footer-custom a:hover::after {
  width: 100%;
}

.footer-custom a:hover {
  color: #ddd;
}

/* ÍCONE COM EFEITO HOVER */
.footer-logo-hover {
  overflow: hidden;
  display: inline-block;
  width: 60px;
  height: auto;
  transition: transform 0.3s ease;
}

.footer-logo-hover img {
  max-height: 50px;
  transition: transform 0.3s ease;
}

.footer-logo-hover:hover img {
  transform: scale(1.1);
}

/* RESPONSIVO */
@media (max-width: 1024px) {
  .footer-custom {
    gap: 20px;
  }

  .footer-custom > div {
    flex: 1 1 45%;
  }
}

@media (max-width: 600px) {
  .footer-custom > div {
    flex: 1 1 100%;
  }
}/* End custom CSS */