/* menu_mobile.css */
.rr-mobile-topo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.rr-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
}

.rr-icon-button {
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #d41405;
  cursor: pointer;
}

.rr-logo-center img {
  height: 50px;
}

.rr-slide-menu {
  position: fixed;
  top: 0;
  left: 0; /* mudou para esquerda */
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: #fff;
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.rr-slide-menu.open {
  transform: translateX(0);
}

.rr-slide-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid #eee;
}

.rr-slide-header h2 {
  margin: 0;
  font-size: 1.2rem;
  color: #d41405;
}

.rr-slide-header button {
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #333;
  cursor: pointer;
}

.rr-slide-content {
  padding: 16px;
  flex: 1;
  overflow-y: auto;
}

.rr-slide-auth {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.rr-slide-auth .rr-btn {
  flex: 1;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 1rem;
  border: none;
  color: #fff;
  background: #d41405;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.rr-slide-auth .secundario {
  background: #555;
}

.rr-slide-busca {
  display: flex;
  margin-bottom: 20px;
  gap: 8px;
}

.rr-slide-busca input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.rr-slide-busca button {
  padding: 10px 14px;
  background: #d41405;
  border: none;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
}

.rr-slide-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rr-slide-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  text-decoration: none;
  color: #212529;
  border-radius: 4px;
  transition: background 0.3s;
}

.rr-slide-nav a:hover {
  background-color: #f5f5f5;
}

.rr-slide-nav i {
  font-size: 1.2rem;
  min-width: 20px;
  text-align: center;
}

@media (min-width: 769px) {
  .rr-mobile-topo,
  .rr-slide-menu {
    display: none !important;
  }
}
