.elementor-40 .elementor-element.elementor-element-4a1573e{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS for text-editor, class: .elementor-element-22ba9bd */.btn-animate {
  background-color: #CF8812; /* Alaranjado ouro antigo */
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(207, 136, 18, 0.4);
}

.btn-animate:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(207/* End custom CSS */
/* Start custom CSS *//* ===== RESET E ESTILOS GERAIS ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  background: #fff;
}

/* ===== ESTRUTURA BÁSICA ===== */
.section {
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== TIPOGRAFIA ===== */
h1, h2, h3 {
  font-family: 'Arial Black', sans-serif;
  color: #222;
}

p, a, li {
  font-family: 'Helvetica Neue', sans-serif;
  color: #444;
}

a {
  color: #007BFF;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ===== BOTÕES ===== */
.btn-primary {
  display: inline-block;
  background: #007BFF;
  color: #fff;
  padding: 12px 24px;
  border-radius: 4px;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #0056b3;
}

/* ===== SEÇÃO HERO COM IMAGEM DE FUNDO ===== */
.hero {
  background: url('sua-imagem.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero .content {
  position: relative;
  z-index: 1;
}

/* ===== GRID PARA SEÇÕES DE SERVIÇOS ===== */
.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.grid .item {
  flex: 1 1 calc(33.333% - 20px);
  background: #f9f9f9;
  padding: 20px;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .grid .item {
    flex: 1 1 100%;
  }
}

/* ===== RODAPÉ ===== */
footer {
  background: #222;
  color: #eee;
  padding: 40px 20px;
  text-align: center;
}

footer a {
  color: #fff;
}/* End custom CSS */