.elementor-305 .elementor-element.elementor-element-e380b8a{--display:flex;}.elementor-305 .elementor-element.elementor-element-3ab08a3{--display:flex;}body.elementor-page-305:not(.elementor-motion-effects-element-type-background), body.elementor-page-305 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#474747;}/* Start custom CSS for html, class: .elementor-element-c841f45 *//* ===== HEADER ===== */
.site-header {
  background: #ffffff;
  border-bottom: 2px solid #e5e7eb;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.site-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .logo img {
  height: 50px;
  width: auto;
}

/* ===== MENU ===== */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.main-nav ul li a {
  text-decoration: none;
  color: #1f2937;
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-nav ul li a:hover {
  color: #16a34a;
}

/* ===== BOTÃO HEADER ===== */
.header-btn .btn-primary {
  background: #14b8a6;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.header-btn .btn-primary:hover {
  background: #0d9488;
}

/* ===== BOTÃO HAMBURGUER ===== */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  margin-right: 14px;
  font-weight: 800;
}

/* ===== VISIBILIDADE ===== */
.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    padding: 20px;
    flex-direction: column;
    box-sizing: border-box;
    max-width: 100vw; /* garante que não ultrapasse a tela */
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
    margin-top: 15px;
  }
}

/* ===== FIX SCROLL HORIZONTAL ===== */
html, body {
  overflow-x: hidden;
  width: 100%;
}/* End custom CSS */