.elementor-8357 .elementor-element.elementor-element-4a50e2f{--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;}/* Start custom CSS for html, class: .elementor-element-14d77ef */.hero-banner {
  position: relative;
  background: url('https://wemach.com.br/wp-content/uploads/2025/02/164ffebb-a8db-40fe-96c9-8848636cfc8d-1.png') no-repeat center;
  background-size: cover;
  padding: 100px 0;
  text-align: center;
  color: var(--e-global-color-primary);
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); /* Cor preta com transparência */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2; /* Garante que o conteúdo fique acima do fundo escuro */
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 50px;
  font-weight: bold;
  color: #74A8C5; /* Cor azul aplicada ao título */
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 22px;
  color: #fff;
  margin-bottom: 30px;
}

.hero-banner .btn-primary {
  position: relative;
  display: inline-block;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background-color: #74A8C5; /* Cor de fundo mais forte para o botão */
  border: none;
  border-radius: 5px;
  text-transform: uppercase;
  text-decoration: none; /* Remove underline */
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 2; /* Garante que o botão fique visível acima da camada escura */
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6); /* Efeito de brilho no texto */
}

.hero-banner .btn-primary:hover {
  background-color: #4E7A92; /* Cor do fundo ao passar o mouse */
  transform: translateY(-5px); /* Efeito de elevação */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Sombra suave ao passar o mouse */
}

.hero-banner .btn-primary:active {
  transform: translateY(2px); /* Efeito de pressionamento */
}

.machines-section {
  padding: 80px 0;
  background: var(--e-global-color-background);
}

.machines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.machine-item {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.machine-item i {
  font-size: 48px;
  color: var(--e-global-color-accent);
  margin-bottom: 15px;
}

.about-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  font-size: 18px;
  color: #333;
  margin-bottom: 30px;
}

.about-content .btn-secondary {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background-color: #333;
  border: none;
  border-radius: 5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.about-content .btn-secondary:hover {
  background-color: #555;
}

.testimonials-section {
  padding: 80px 0;
  background: var(--e-global-color-background);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.testimonial-item {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.testimonial-item p {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
}

.testimonial-item span {
  font-size: 14px;
  color: #777;
}

.contact-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.contact-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-content p {
  font-size: 18px;
  color: #333;
  margin-bottom: 30px;
}

.contact-content .btn-primary {
  display: inline-block;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background-color: #74A8C5;
  border: none;
  border-radius: 5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.contact-content .btn-primary:hover {
  background-color: #4E7A92;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .machines-grid, .testimonials-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */