/* 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;
}

/* Cores condizentes com o site de referência - Verde e Branco */
.hero-section {
  background: linear-gradient(135deg, #28a745 0%, #218838 100%);
  color: white;
  padding: 80px 0;
}

.hero-container {
  text-align: center;
}

.hero-title {
  color: white;
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-actions .btn-principal {
  background: white;
  color: #28a745;
  border: 2px solid white;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.hero-actions .btn-principal:hover {
  background: transparent;
  color: white;
  border-color: white;
}

.hero-actions .btn-secundario {
  color: white;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 2px solid white;
  padding-bottom: 5px;
  transition: all 0.3s ease;
}

.hero-actions .btn-secundario:hover {
  color: rgba(255, 255, 255, 0.8);
  border-bottom-color: rgba(255, 255, 255, 0.8);
}

.como-funciona-section {
  background-color: #f8f9fa;
  padding: 60px 0;
}

.section-title {
  color: #212529;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  font-size: 2.5rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.step-item {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.15);
}

.step-icon {
  background: linear-gradient(135deg, #28a745, #218838);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

.step-title {
  color: #212529;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.step-description {
  color: #6c757d;
  line-height: 1.6;
}

.cta-section {
  background: linear-gradient(135deg, #28a745 0%, #218838 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cta-title {
  color: white;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-actions .btn-principal {
  background: white;
  color: #28a745;
  border: 2px solid white;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-actions .btn-principal:hover {
  background: transparent;
  color: white;
  border-color: white;
}

.cta-actions .btn-secundario {
  color: white;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 2px solid white;
  padding-bottom: 5px;
  transition: all 0.3s ease;
}

.cta-actions .btn-secundario:hover {
  color: rgba(255, 255, 255, 0.8);
  border-bottom-color: rgba(255, 255, 255, 0.8);
}

.sobre-section {
  background-color: #f8f9fa;
  padding: 60px 0;
}

.sobre-description {
  color: #6c757d;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* 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;
}
