.page-fortuneox {
  background-color: #140C0C; /* Cor de fundo principal do page-fortuneox */
  color: #FFF1E8; /* Cor do texto principal para contraste com fundo escuro */
  font-family: 'Arial', sans-serif;
}

.page-fortuneox__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 60px 20px;
  background-color: #0D0606; /* Um pouco mais escuro para o hero */
}

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

.page-fortuneox__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.4; /* Imagem de fundo sutil */
}

.page-fortuneox__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Fundo semi-transparente para o texto */
  border-radius: 10px;
}

.page-fortuneox__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Ajuste com clamp */
  color: #F3C54D; /* Gold */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-fortuneox__hero-description {
  font-size: 1.2em;
  color: #FFF1E8;
  margin-bottom: 30px;
  line-height: 1.5;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-fortuneox__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #FFF1E8;
  font-size: 1.1em;
  font-weight: 700;
  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: none;
  cursor: pointer;
}

.page-fortuneox__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.page-fortuneox__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  padding-top: 10px; /* Pequeno top padding para evitar double margin com body */
  background-color: #2A1212; /* Card BG */
  text-align: center;
}

.page-fortuneox__section-title {
  font-size: 2.5em;
  color: #F3C54D; /* Gold */
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.3;
}

.page-fortuneox__section-description {
  font-size: 1.1em;
  color: #FFF1E8;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.page-fortuneox__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px; /* Max width para o vídeo */
  margin: 20px auto;
  background-color: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-fortuneox__video {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}

.page-fortuneox__video-overlay-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4); /* Overlay semi-transparente */
  color: #FFF1E8;
  font-size: 2em;
  font-weight: bold;
  text-decoration: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none; /* Permite o clique no vídeo por baixo, mas o JS vai gerenciar */
}

.page-fortuneox__video-wrapper:hover .page-fortuneox__video-overlay-link {
  opacity: 1;
  pointer-events: auto;
}

.page-fortuneox__video-overlay-text {
  background-color: rgba(198, 31, 31, 0.8); /* Fundo para o texto do overlay */
  padding: 10px 20px;
  border-radius: 5px;
}

.page-fortuneox__cta-button--small {
  font-size: 0.95em;
  padding: 12px 25px;
  margin-top: 20px;
}

.page-fortuneox__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #140C0C; /* Background principal */
  color: #FFF1E8;
}

.page-fortuneox__text-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
  align-items: center;
}

.page-fortuneox__text-block p {
  font-size: 1em;
  line-height: 1.7;
  color: #FFF1E8;
}

.page-fortuneox__image {
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  height: auto;
  display: block;
}

.page-fortuneox__image--left {
  margin-right: auto;
}

.page-fortuneox__image--right {
  margin-left: auto;
}

.page-fortuneox__faq-section {
  background-color: #2A1212; /* Card BG */
  padding: 40px 20px;
  color: #FFF1E8;
  text-align: center;
}

.page-fortuneox__faq-list {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.page-fortuneox__faq-item {
  background-color: #140C0C;
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-fortuneox__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  font-size: 1.1em;
  font-weight: 600;
  color: #F3C54D; /* Gold */
  cursor: pointer;
  list-style: none; /* Remove default marker */
}

.page-fortuneox__faq-question::-webkit-details-marker {
  display: none; /* Remove default marker for Webkit */
}

.page-fortuneox__faq-qtext {
  flex-grow: 1;
}

.page-fortuneox__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
  color: #FFF1E8;
}

.page-fortuneox__faq-answer {
  padding: 0 20px 15px 20px;
  font-size: 0.95em;
  color: #FFF1E8;
  line-height: 1.6;
}

.page-fortuneox__faq-item[open] .page-fortuneox__faq-question {
  background-color: #7E0D0D; /* Deep Red when open */
}

.page-fortuneox__faq-item[open] .page-fortuneox__faq-toggle {
  content: '−'; /* Change to minus when open */
}

.page-fortuneox__cta-final-section {
  background-color: #C61F1F; /* Main color */
  padding: 60px 20px;
  text-align: center;
  color: #FFF1E8;
}

.page-fortuneox__cta-final-section .page-fortuneox__section-title {
  color: #F3C54D; /* Gold */
  margin-bottom: 20px;
}

.page-fortuneox__cta-final-section .page-fortuneox__section-description {
  color: #FFF1E8;
  margin-bottom: 40px;
}

.page-fortuneox__button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-fortuneox__cta-button--primary {
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #FFF1E8;
}

.page-fortuneox__cta-button--secondary {
  background-color: #E53030; /* Auxiliary color */
  color: #FFF1E8;
}

.page-fortuneox__cta-button--tertiary {
  background-color: #6A1E1E; /* Border color */
  color: #FFF1E8;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .page-fortuneox__hero-section {
    padding: 40px 15px;
  }

  .page-fortuneox__main-title {
    font-size: 2em; /* Smaller on mobile */
  }

  .page-fortuneox__hero-description {
    font-size: 1em;
  }

  .page-fortuneox__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fortuneox__button-group {
    flex-direction: column;
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fortuneox__video-section {
    padding: 20px 15px;
    padding-top: 10px !important; /* Ensure small padding */
  }

  .page-fortuneox__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-fortuneox__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fortuneox__content-area {
    padding: 30px 15px;
  }

  .page-fortuneox__section-title {
    font-size: 1.8em;
  }

  .page-fortuneox__section-description {
    font-size: 0.95em;
  }

  .page-fortuneox__text-block {
    flex-direction: column;
    gap: 20px;
  }

  .page-fortuneox__image {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }

  .page-fortuneox__faq-section {
    padding: 30px 15px;
  }

  .page-fortuneox__faq-question {
    font-size: 1em;
    padding: 12px 15px;
  }

  .page-fortuneox__faq-answer {
    padding: 0 15px 12px 15px;
  }

  .page-fortuneox__cta-final-section {
    padding: 40px 15px;
  }
}