/* Estilos extraídos do index.html */

/* Menu items */
.item-menu a {
  color: #000 !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.item-menu a:hover {
  color: #000 !important;
}

.item-menu a.active {
  color: #000 !important;
  font-weight: bold;
}

/* Sidebar mobile - oculto por padrão */
.sidebar {
  display: none;
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: white;
  z-index: 9999;
  transition: right 0.3s ease;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.sidebar.active {
  display: block;
  right: 0;
}

.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
}

.sidebar-overlay.active {
  display: block;
}

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

.close-sidebar {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

.sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-nav li {
  border-bottom: 1px solid #eee;
}

.sidebar-nav a {
  display: block;
  padding: 15px 20px;
  text-decoration: none;
  color: #333;
  transition: background 0.3s ease;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  background: #f8f9fa;
  color: var(--cor-primaria);
}

/* Fixed mobile section */
#fixed-mobile {
  display: none;
}

/* Progress bars */
#barraMobile,
#barra {
  width: 54%;
}

.progress-fill {
  width: 54%;
}

/* Pix container and instruction */
.pix-container {
  position: relative;
  display: block;
  width: 100%;
  margin: 20px 0;
}

.pix-instruction {
  display: block;
  text-align: center;
  font-size: 12px;
  color: #555;
  margin-bottom: 10px;
  font-weight: 500;
}

/* Comments and footer styles */
.comments-title {
  font-size: 16px;
}

.no-padding {
  padding: 0 !important;
}

.text-right {
  text-align: right;
}

.app-store-item {
  padding-bottom: 12px !important;
}
