.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-35e0f2a *//* =========================================================
   1. DEFINA SUAS CORES E FONTES AQUI
   ========================================================= */
:root {
  --fonte-principal: 'Monteserrat', sans-serif; /* Cole sua fonte aqui */
  
  --cor-fundo-topo: #1d2c36;      /* Sua cor do gradiente (superior) */
  --cor-fundo-base: #151e25;      /* Sua cor do gradiente (inferior) */
  --cor-copyright: #131b21;       /* Sua cor da barra inferior */
  
  --cor-texto: #ffffff;           /* Sua cor para títulos e textos principais */
  --cor-links: #c5d0d8;           /* Sua cor para links e e-mail */
  --cor-linhas-divisorias: rgba(255, 255, 255, 0.3); /* Sua cor de bordas/linhas */
}

/* =========================================================
   2. ESTRUTURA E ESTILIZAÇÃO DO RODAPÉ
   ========================================================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;Monteserrat;
}

.footer {
  background: linear-gradient(180deg, var(--cor-fundo-topo) 0%, var(--cor-fundo-base) 100%);
  color: var(--cor-texto);
  width: 100%;
  border-top: 1px solid var(--cor-linhas-divisorias);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-col {
  flex: 1;
  padding: 0 25px;
  position: relative;
}

/* Linhas divisórias verticais */
.footer-col:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: var(--cor-linhas-divisorias);
}

.footer-brand {
  padding-left: 0;
}

.footer-brand .logo img {
  max-width: 160px;
  height: auto;
  margin-bottom: 15px;
}

.footer-brand .slogan {
  font-size: 11px;
  color: var(--cor-links);
  line-height: 1.4;
  font-weight: 300;
}

.footer-col h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--cor-texto);
  line-height: 1.3;
  text-transform: uppercase;
}

.footer-col nav ul {
  list-style: none;
}

.footer-col nav ul li {
  margin-bottom: 8px;
}

.footer-col a,
.footer-col p {
  color: var(--cor-links);
  font-size: 13px;
  text-decoration: none;
  line-height: 1.6;
}

.footer-col a:hover {
  color: var(--cor-texto);
  text-decoration: underline;
}

/* Ícones Sociais */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-links a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--cor-texto);
  border-radius: 50%;
  color: var(--cor-texto);
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--cor-texto);
  color: var(--cor-fundo-topo);
  text-decoration: none;
}

/* Faixa Inferior de Copyright */
.footer-bottom {
  background-color: var(--cor-copyright);
  text-align: center;
  padding: 12px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  font-size: 11px;
  color: var(--cor-links);
  font-weight: 300;
}

/* Responsivo para Mobile */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    padding: 30px 20px;
  }

  .footer-col {
    padding: 20px 0;
    width: 100%;
  }

  .footer-col:not(:last-child)::after {
    display: none;
  }
}/* End custom CSS */