/* style/blog-f1-bet-strategy-guide.css */
.page-blog-f1-bet-strategy-guide {
  font-family: 'Arial', sans-serif;
  color: var(--text-main, #333333);
  line-height: 1.6;
}

.page-blog-f1-bet-strategy-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* body já tem padding-top, este é um espaçamento extra */
  box-sizing: border-box;
}

.page-blog-f1-bet-strategy-guide__hero-image-wrapper {
  width: 100%;
  max-height: 70vh;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}

.page-blog-f1-bet-strategy-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6);
}

.page-blog-f1-bet-strategy-guide__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  color: #ffffff;
}

.page-blog-f1-bet-strategy-guide__main-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-f1-bet-strategy-guide__intro-text {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-f1-bet-strategy-guide__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-f1-bet-strategy-guide__btn-primary {
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  border: none;
}

.page-blog-f1-bet-strategy-guide__btn-primary:hover {
  opacity: 0.9;
}

.page-blog-f1-bet-strategy-guide__content-section {
  padding: 50px 20px;
  box-sizing: border-box;
}

.page-blog-f1-bet-strategy-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-blog-f1-bet-strategy-guide__section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.3;
}

.page-blog-f1-bet-strategy-guide__sub-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  line-height: 1.4;
}

.page-blog-f1-bet-strategy-guide__content-section p,
.page-blog-f1-bet-strategy-guide__list-item {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.page-blog-f1-bet-strategy-guide__list {
  list-style: disc inside;
  padding-left: 20px;
  margin-bottom: 20px;
}

.page-blog-f1-bet-strategy-guide__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  max-width: 800px;
}

.page-blog-f1-bet-strategy-guide__dark-section {
  background-color: #E53935;
  color: #ffffff;
}

.page-blog-f1-bet-strategy-guide__dark-section .page-blog-f1-bet-strategy-guide__section-title,
.page-blog-f1-bet-strategy-guide__dark-section .page-blog-f1-bet-strategy-guide__sub-title {
  color: #ffffff;
}

.page-blog-f1-bet-strategy-guide__light-bg {
  background-color: var(--card-bg, #FFFFFF);
  color: var(--text-main, #333333);
}

.page-blog-f1-bet-strategy-guide__conclusion-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #FF5A4F; /* Using auxiliary color for conclusion */
  color: #ffffff;
}

.page-blog-f1-bet-strategy-guide__conclusion-section .page-blog-f1-bet-strategy-guide__section-title {
  color: #ffffff;
}

/* FAQ Section */
.page-blog-f1-bet-strategy-guide__faq-section {
  padding: 50px 20px;
  background-color: var(--background, #F5F7FA);
}

.page-blog-f1-bet-strategy-guide__faq-item {
  background-color: #ffffff;
  border: 1px solid var(--border, #E0E0E0);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-f1-bet-strategy-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-main, #333333);
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-blog-f1-bet-strategy-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-f1-bet-strategy-guide__faq-question:hover {
  background-color: #f0f0f0;
}

.page-blog-f1-bet-strategy-guide__faq-qtext {
  flex-grow: 1;
}

.page-blog-f1-bet-strategy-guide__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
}

.page-blog-f1-bet-strategy-guide__faq-item[open] .page-blog-f1-bet-strategy-guide__faq-toggle {
  content: '−';
}

.page-blog-f1-bet-strategy-guide__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1rem;
  color: #555555;
  border-top: 1px solid var(--border, #E0E0E0);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-blog-f1-bet-strategy-guide__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-blog-f1-bet-strategy-guide__main-title {
    font-size: 2.5rem;
  }

  .page-blog-f1-bet-strategy-guide__intro-text {
    font-size: 1rem;
  }

  .page-blog-f1-bet-strategy-guide__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-blog-f1-bet-strategy-guide__content-section {
    padding: 30px 15px;
  }

  .page-blog-f1-bet-strategy-guide__section-title {
    font-size: 2rem;
  }

  .page-blog-f1-bet-strategy-guide__sub-title {
    font-size: 1.5rem;
    margin-top: 30px;
  }

  .page-blog-f1-bet-strategy-guide__content-section p,
  .page-blog-f1-bet-strategy-guide__list-item {
    font-size: 0.95rem;
  }

  .page-blog-f1-bet-strategy-guide__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 20px auto;
  }

  .page-blog-f1-bet-strategy-guide__list {
    padding-left: 15px;
  }

  .page-blog-f1-bet-strategy-guide__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-blog-f1-bet-strategy-guide__faq-answer {
    padding: 10px 20px 15px;
    font-size: 0.9rem;
  }

  .page-blog-f1-bet-strategy-guide__container,
  .page-blog-f1-bet-strategy-guide__hero-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-f1-bet-strategy-guide__hero-image-wrapper {
    max-height: unset;
  }
  
  .page-blog-f1-bet-strategy-guide__hero-image {
    filter: brightness(0.6) !important;
  }
}

/* Ensure all images and containers are responsive */
.page-blog-f1-bet-strategy-guide img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-blog-f1-bet-strategy-guide__section,
.page-blog-f1-bet-strategy-guide__card,
.page-blog-f1-bet-strategy-guide__container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

/* No CSS filter allowed for images */
.page-blog-f1-bet-strategy-guide img {
  /* filter: none; -- explicitly disallowed by prompt */
}

/* Button specific responsive styles */
.page-blog-f1-bet-strategy-guide a[class*="button"],
.page-blog-f1-bet-strategy-guide a[class*="btn"] {
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-f1-bet-strategy-guide__cta-buttons,
.page-blog-f1-bet-strategy-guide__button-group,
.page-blog-f1-bet-strategy-guide__btn-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

@media (max-width: 768px) {
  .page-blog-f1-bet-strategy-guide a[class*="button"],
  .page-blog-f1-bet-strategy-guide a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-f1-bet-strategy-guide__cta-buttons,
  .page-blog-f1-bet-strategy-guide__button-group,
  .page-blog-f1-bet-strategy-guide__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-blog-f1-bet-strategy-guide__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}