.revendedores-main {
  max-width: 1000px;
  margin: 50px auto;
  padding: 0 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #ddd;
}

.revendedores-main h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #00ffbf; /* roxo tema */
  text-align: center;
}

.intro {
  font-size: 1.3rem;
  margin-bottom: 40px;
  text-align: center;
  color: #ccc;
}

.revendedores-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.texto-beneficios {
  flex: 1 1 400px;
  max-width: 600px;
}

.texto-beneficios .icons {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.texto-beneficios ul {
  list-style: disc inside;
  margin-bottom: 30px;
  font-size: 1.1rem;
  color: #eee;
  line-height: 1.6;
}

.btn-contato {
  display: inline-block;
  background: linear-gradient(90deg, #080808,#000000);
  border: none;
  padding: 15px 40px;
  font-size: 1.3rem;
  color: white;
  border-radius: 35px;
  cursor: pointer;
  transition: background 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 233, 233, 0.5);
}

.btn-contato:hover {
  background: linear-gradient(90deg, #00ffbf, #00ffbf);
  box-shadow: 0 6px 20px #00ffbf;
}

.imagem-revendedor {
  flex: 1 1 350px;
  max-width: 400px;
  text-align: center;
}

.imagem-revendedor img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}
.menu-toggle {
  display: none; /* no desktop */
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 2001;
}

.menu-toggle span {
  width: 21px;
  height: 2px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  nav {
    flex-direction: column;
    background-color: #111;
    position: fixed;
    top: 0;
    right: -250px; /* hidden off-screen */
    width: 250px;
    height: 100vh;
    padding-top: 60px;
    transition: right 0.3s ease-in-out;
    box-shadow: -2px 0 8px rgba(0,0,0,0.7);
    z-index: 2000;
  }

  nav a {
    padding: 15px 20px;
    border-bottom: 1px solid #222;
    color: white;
    text-decoration: none;
  }

  nav.show {
    right: 0; /* menu visible */
  }
}
