.page-blog-esporte-beta-guide {
  color: #FFF5E1; /* Text Main */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #B71C1C; /* Background */
}

.page-blog-esporte-beta-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-blog-esporte-beta-guide__section {
  padding: 60px 0;
}

.page-blog-esporte-beta-guide__dark-bg {
  background-color: #B71C1C; /* Background */
  color: #FFF5E1; /* Text Main */
}

.page-blog-esporte-beta-guide__light-bg {
  background-color: #D32F2F; /* Card B G */
  color: #FFF5E1; /* Text Main */
}

.page-blog-esporte-beta-guide__section-title {
  font-size: 2.8em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #F4D34D; /* Gold */
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-esporte-beta-guide__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em);
  font-weight: 900;
  text-align: center;
  margin-bottom: 20px;
  color: #F4D34D; /* Gold */
  letter-spacing: 2px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.page-blog-esporte-beta-guide__text-block {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF5E1; /* Text Main */
}

.page-blog-esporte-beta-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0;
  min-height: 600px;
  overflow: hidden;
}

.page-blog-esporte-beta-guide__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-blog-esporte-beta-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-blog-esporte-beta-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  margin-top: 20px;
}

.page-blog-esporte-beta-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFF5E1; /* Text Main */
  text-align: center;
}

.page-blog-esporte-beta-guide__cta-button {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Botão */
  color: #7A0E0E; /* Deep Red for contrast */
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  border: 2px solid #F2B544; /* Borda */
}

.page-blog-esporte-beta-guide__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6), 0 0 15px #FFCC66; /* Glow */
}

.page-blog-esporte-beta-guide__cta-button--secondary {
  background: #7A0E0E; /* Deep Red */
  color: #FFF5E1; /* Text Main */
  border: 2px solid #F2B544; /* Borda */
}

.page-blog-esporte-beta-guide__cta-button--secondary:hover {
  background: #C91F17; /* Primary */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6), 0 0 15px #FFCC66; /* Glow */
}

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

.page-blog-esporte-beta-guide__feature-card {
  background-color: #D32F2F; /* Card B G */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #F2B544; /* Borda */
}

.page-blog-esporte-beta-guide__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-blog-esporte-beta-guide__feature-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #F4D34D; /* Gold */
}

.page-blog-esporte-beta-guide__feature-description {
  font-size: 1em;
  color: #FFF5E1; /* Text Main */
}

.page-blog-esporte-beta-guide__step-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.page-blog-esporte-beta-guide__step-item {
  background-color: #D32F2F; /* Card B G */
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 80px;
  border: 1px solid #F2B544; /* Borda */
}

.page-blog-esporte-beta-guide__step-item::before {
  counter-increment: step-counter;
  content: "Passo " counter(step-counter);
  position: absolute;
  left: 20px;
  top: 25px;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Botão */
  color: #7A0E0E; /* Deep Red */
  font-weight: bold;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.page-blog-esporte-beta-guide__step-title {
  font-size: 1.6em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #F4D34D; /* Gold */
}

.page-blog-esporte-beta-guide__step-description {
  font-size: 1em;
  color: #FFF5E1; /* Text Main */
}

.page-blog-esporte-beta-guide__content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-esporte-beta-guide__content-card {
  background-color: #B71C1C; /* Background */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #F2B544; /* Borda */
  display: flex;
  flex-direction: column;
}

.page-blog-esporte-beta-guide__content-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-blog-esporte-beta-guide__card-title {
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #F4D34D; /* Gold */
}

.page-blog-esporte-beta-guide__card-description {
  font-size: 1em;
  color: #FFF5E1; /* Text Main */
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-blog-esporte-beta-guide__card-link {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Botão */
  color: #7A0E0E; /* Deep Red */
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  border: 1px solid #F2B544; /* Borda */
}

.page-blog-esporte-beta-guide__card-link:hover {
  background: #FFCC66; /* Glow */
}

.page-blog-esporte-beta-guide__responsible-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-esporte-beta-guide__responsible-item {
  background-color: #D32F2F; /* Card B G */\  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #F2B544; /* Borda */
}

.page-blog-esporte-beta-guide__responsible-title {
  font-size: 1.6em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #F4D34D; /* Gold */
}

.page-blog-esporte-beta-guide__responsible-description {
  font-size: 1em;
  color: #FFF5E1; /* Text Main */
}

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

.page-blog-esporte-beta-guide__tip-card {
  background-color: #B71C1C; /* Background */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #F2B544; /* Borda */
}

.page-blog-esporte-beta-guide__tip-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-blog-esporte-beta-guide__tip-title {
  font-size: 1.6em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #F4D34D; /* Gold */
}

.page-blog-esporte-beta-guide__tip-description {
  font-size: 1em;
  color: #FFF5E1; /* Text Main */
}

.page-blog-esporte-beta-guide__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-esporte-beta-guide__faq-item {
  background-color: #D32F2F; /* Card B G */
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #F2B544; /* Borda */
}

.page-blog-esporte-beta-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.3em;
  font-weight: bold;
  color: #F4D34D; /* Gold */
  background-color: #C91F17; /* Primary */
  border-bottom: 1px solid #E53935; /* Auxiliary */
  list-style: none;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.page-blog-esporte-beta-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-esporte-beta-guide__faq-question:hover {
  background-color: #E53935; /* Auxiliary */
}

.page-blog-esporte-beta-guide__faq-qtext {
  flex-grow: 1;
}

.page-blog-esporte-beta-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #FFD86A;
}

.page-blog-esporte-beta-guide__faq-item[open] .page-blog-esporte-beta-guide__faq-toggle {
  content: '−';
}

.page-blog-esporte-beta-guide__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: #FFF5E1; /* Text Main */
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-blog-esporte-beta-guide__faq-answer p {
  margin: 0;
  color: #FFF5E1; /* Text Main */
}

.page-blog-esporte-beta-guide__cta-final .page-blog-esporte-beta-guide__section-title {
  color: #F4D34D; /* Gold */
}

/* Imagens responsivas */
.page-blog-esporte-beta-guide img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-blog-esporte-beta-guide__section-title,
  .page-blog-esporte-beta-guide__main-title {
    font-size: 2em;
    margin-bottom: 25px;
  }

  .page-blog-esporte-beta-guide__hero-content {
    padding: 15px;
  }

  .page-blog-esporte-beta-guide__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-blog-esporte-beta-guide__cta-button {
    font-size: 1em;
    padding: 12px 25px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-esporte-beta-guide__features-grid,
  .page-blog-esporte-beta-guide__content-grid,
  .page-blog-esporte-beta-guide__responsible-list,
  .page-blog-esporte-beta-guide__tips-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-esporte-beta-guide__step-item {
    padding: 20px;
    padding-left: 70px;
  }

  .page-blog-esporte-beta-guide__step-item::before {
    width: 40px;
    height: 40px;
    font-size: 0.8em;
    left: 15px;
    top: 20px;
  }

  .page-blog-esporte-beta-guide__step-title {
    font-size: 1.4em;
  }

  .page-blog-esporte-beta-guide__card-title {
    font-size: 1.5em;
  }

  .page-blog-esporte-beta-guide__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-blog-esporte-beta-guide__faq-toggle {
    font-size: 1.3em;
  }

  .page-blog-esporte-beta-guide__faq-answer {
    padding: 15px 20px;
  }

  .page-blog-esporte-beta-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-esporte-beta-guide__section,
  .page-blog-esporte-beta-guide__card,
  .page-blog-esporte-beta-guide__container,
  .page-blog-esporte-beta-guide__hero-section,
  .page-blog-esporte-beta-guide__hero-content,
  .page-blog-esporte-beta-guide__cta-button,
  .page-blog-esporte-beta-guide__cta-buttons,
  .page-blog-esporte-beta-guide__button-group,
  .page-blog-esporte-beta-guide__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-esporte-beta-guide__hero-section {
    padding-top: 10px !important; /* body já tem padding-top */
  }

  .page-blog-esporte-beta-guide__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }
}