.page-bac-bo {
  color: #F2FFF6; /* Texto principal em cor clara para fundo escuro */
  background-color: #08160F; /* Cor de fundo principal do body */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  font-size: 16px;
}

.page-bac-bo a {
  color: #57E38D; /* Links em verde claro */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-bac-bo a:hover {
  color: #2AD16F;
  text-decoration: underline;
}

.page-bac-bo__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-bac-bo__section-title {
  font-size: 38px;
  font-weight: 700;
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-bac-bo__main-title {
  font-size: clamp(32px, 4vw, 56px); /* H1 com clamp para responsividade */
  font-weight: 800;
  color: #F2C14E; /* Título principal em dourado */
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}

.page-bac-bo__hero-description {
  font-size: 19px;
  color: #A7D9B8; /* Descrição em verde secundário */
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.5;
}

.page-bac-bo__dark-bg {
  background-color: #0A4B2C; /* Fundo verde escuro para seções */
  color: #F2FFF6; /* Texto claro */
}

.page-bac-bo__dark-bg .page-bac-bo__section-title {
  color: #F2FFF6;
}

.page-bac-bo__card {
  background: #11271B; /* Cor de fundo do Card BG */
  border: 1px solid #2E7A4E; /* Cor da borda */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #F2FFF6;
}

.page-bac-bo__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

.page-bac-bo__card-title {
  font-size: 24px;
  font-weight: 700;
  color: #F2C14E; /* Títulos de card em dourado */
  margin-top: 0;
  margin-bottom: 15px;
}

.page-bac-bo__text-block p {
  margin-bottom: 15px;
  color: #F2FFF6;
}

/* HERO Section */
.page-bac-bo__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Pequeno padding-top, body já tem offset */
  overflow: hidden;
}

.page-bac-bo__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-bac-bo__hero-image {
  width: 100%;
  margin-bottom: 30px;
  max-width: 1200px; /* Limita a largura da imagem */
}

.page-bac-bo__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-bac-bo__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-bac-bo__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.page-bac-bo__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-bac-bo__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff; /* Botão primário com texto branco */
  border: none;
}

.page-bac-bo__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.page-bac-bo__btn-secondary {
  background: transparent;
  color: #F2C14E; /* Botão secundário com texto dourado */
  border: 2px solid #F2C14E;
}

.page-bac-bo__btn-secondary:hover {
  background: rgba(242, 193, 78, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

/* General Content Sections */
.page-bac-bo__section {
  padding: 80px 0;
  border-bottom: 1px solid #1E3A2A; /* Cor do Divider */
}

.page-bac-bo__section:last-of-type {
  border-bottom: none;
}

.page-bac-bo__content-wrapper {
  display: flex;
  gap: 50px;
  align-items: center;
}

.page-bac-bo__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-bac-bo__text-block {
  flex: 1;
  min-width: 0; /* Permite que o texto encolha */
}

.page-bac-bo__image-block {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-bac-bo__image-block img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  min-width: 200px; /* Mínimo de 200px para imagens */
  min-height: 200px;
}

.page-bac-bo__image-block--full-width {
  margin-top: 40px;
}

/* How to Play Grid */
.page-bac-bo__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-bac-bo__step-card {
  text-align: center;
}

.page-bac-bo__step-card p {
  color: #A7D9B8;
}

/* Exclusive Features Grid */
.page-bac-bo__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-bac-bo__feature-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-bac-bo__feature-card p {
  color: #A7D9B8;
}

/* Security and Support Grid */
.page-bac-bo__security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-bac-bo__security-item p {
  color: #A7D9B8;
}

/* FAQ Section */
.page-bac-bo__faq-list {
  margin-top: 40px;
}

details.page-bac-bo__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #2E7A4E; /* Borda do Card BG */
  overflow: hidden;
  background: #11271B; /* Fundo do Card BG */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

details.page-bac-bo__faq-item summary.page-bac-bo__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #F2FFF6;
}

details.page-bac-bo__faq-item summary.page-bac-bo__faq-question::-webkit-details-marker {
  display: none;
}

details.page-bac-bo__faq-item summary.page-bac-bo__faq-question:hover {
  background: rgba(46, 122, 78, 0.2); /* Hover mais sutil */
}

.page-bac-bo__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F2C14E; /* Texto da pergunta em dourado */
}

.page-bac-bo__faq-toggle {
  font-size: 26px;
  font-weight: bold;
  color: #57E38D; /* Sinal de toggle em verde glow */
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}

details.page-bac-bo__faq-item .page-bac-bo__faq-answer {
  padding: 0 25px 20px;
  background: #0A4B2C; /* Fundo Deep Green para a resposta */
  border-radius: 0 0 10px 10px;
  color: #A7D9B8; /* Texto da resposta em verde secundário */
  font-size: 15px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-bac-bo__content-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .page-bac-bo__content-wrapper--reverse {
    flex-direction: column;
  }

  .page-bac-bo__section-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .page-bac-bo__main-title {
    font-size: clamp(28px, 6vw, 48px);
  }

  .page-bac-bo__hero-description {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .page-bac-bo {
    font-size: 15px;
  }

  .page-bac-bo__container {
    padding: 30px 15px;
  }

  .page-bac-bo__section {
    padding: 60px 0;
  }

  .page-bac-bo__section-title {
    font-size: 28px;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .page-bac-bo__main-title {
    font-size: clamp(24px, 7vw, 40px);
  }

  .page-bac-bo__hero-description {
    font-size: 16px;
  }

  .page-bac-bo__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-bac-bo__hero-image img {
    border-radius: 8px;
  }

  .page-bac-bo__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-bac-bo__cta-button {
    padding: 12px 25px;
    font-size: 16px;
    width: 100% !important; /* Força largura total em mobile */
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-bac-bo__card-title {
    font-size: 20px;
  }

  .page-bac-bo__steps-grid,
  .page-bac-bo__feature-grid,
  .page-bac-bo__security-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-bac-bo__feature-card img {
    
  }

  details.page-bac-bo__faq-item summary.page-bac-bo__faq-question {
    padding: 15px 18px;
  }

  .page-bac-bo__faq-qtext {
    font-size: 16px;
  }

  .page-bac-bo__faq-toggle {
    font-size: 22px;
    width: 26px;
  }

  details.page-bac-bo__faq-item .page-bac-bo__faq-answer {
    padding: 0 18px 15px;
    font-size: 14px;
  }

  /* Imagens responsivas */
  .page-bac-bo img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }
  
  .page-bac-bo__section,
  .page-bac-bo__card,
  .page-bac-bo__container,
  .page-bac-bo__cta-buttons,
  .page-bac-bo__button-group,
  .page-bac-bo__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-bac-bo__section-title {
    font-size: 24px;
  }
  .page-bac-bo__main-title {
    font-size: clamp(22px, 8vw, 36px);
  }
  .page-bac-bo__hero-description {
    font-size: 15px;
  }
  .page-bac-bo__cta-button {
    font-size: 15px;
    padding: 10px 20px;
  }
  .page-bac-bo__card-title {
    font-size: 18px;
  }
  .page-bac-bo__faq-qtext {
    font-size: 15px;
  }
}