/* style/fortune-tiger.css */

/* Cores personalizadas */
:root {
  --hhbet-red: #C91F17;
  --hhbet-accent: #E53935;
  --hhbet-card-bg: #D32F2F;
  --hhbet-background: #B71C1C;
  --hhbet-text-main: #FFF5E1;
  --hhbet-border: #F2B544;
  --hhbet-glow: #FFCC66;
  --hhbet-gold: #F4D34D;
  --hhbet-deep-red: #7A0E0E;
  --hhbet-button-gradient: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
}

.page-fortune-tiger {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Padrão para light-bg */
  background-color: var(--hhbet-background); /* Fundo geral da página */
}

.page-fortune-tiger__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Pequeno espaçamento superior */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-fortune-tiger__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  min-height: 200px;
}

.page-fortune-tiger__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.5); /* Fundo semitransparente para legibilidade */
  border-radius: 10px;
  color: var(--hhbet-text-main);
  margin-top: 200px; /* Ajuste para não sobrepor a imagem */
}

.page-fortune-tiger__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--hhbet-gold);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-fortune-tiger__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--hhbet-text-main);
}

.page-fortune-tiger__cta-button {
  display: inline-block;
  background: var(--hhbet-button-gradient);
  color: var(--hhbet-deep-red);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  border: 2px solid var(--hhbet-gold);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-fortune-tiger__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  border-color: var(--hhbet-glow);
}

.page-fortune-tiger__cta-button--final {
  margin-top: 40px;
}

.page-fortune-tiger__section {
  padding: 60px 20px;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-fortune-tiger__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 30px;
  font-weight: bold;
  line-height: 1.3;
}

.page-fortune-tiger__section-text {
  max-width: 900px;
  margin: 0 auto 30px auto;
  font-size: 1.05rem;
  line-height: 1.7;
}

.page-fortune-tiger__image-content {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  min-height: 200px;
}

/* Background and text color adjustments */
.page-fortune-tiger__light-bg {
  background-color: #f5f5f5; /* Fundo mais claro para seções */
  color: #333333;
}

.page-fortune-tiger__light-bg .page-fortune-tiger__section-title {
  color: var(--hhbet-deep-red);
}

.page-fortune-tiger__dark-bg {
  background-color: var(--hhbet-deep-red); /* Fundo mais escuro para seções */
  color: var(--hhbet-text-main);
}

.page-fortune-tiger__dark-bg .page-fortune-tiger__section-title {
  color: var(--hhbet-gold);
}

.page-fortune-tiger__strategy-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px auto;
  max-width: 700px;
  text-align: left;
}

.page-fortune-tiger__strategy-item {
  background-color: var(--hhbet-card-bg);
  color: var(--hhbet-text-main);
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  border-left: 5px solid var(--hhbet-gold);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-size: 1.05rem;
}

/* FAQ Section */
.page-fortune-tiger__faq-section {
  background-color: #f5f5f5;
  color: #333333;
}

.page-fortune-tiger__faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.page-fortune-tiger__faq-item {
  background-color: #ffffff;
  border: 1px solid var(--hhbet-border);
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-fortune-tiger__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--hhbet-deep-red);
  background-color: #fff;
  transition: background-color 0.3s ease;
}

.page-fortune-tiger__faq-question:hover {
  background-color: #f9f9f9;
}

.page-fortune-tiger__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--hhbet-gold);
  transition: transform 0.3s ease;
}

.page-fortune-tiger__faq-item[open] .page-fortune-tiger__faq-toggle {
  transform: rotate(45deg);
}

.page-fortune-tiger__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  color: #555555;
  line-height: 1.6;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .page-fortune-tiger__hero-section {
    padding-bottom: 40px;
  }

  .page-fortune-tiger__hero-content {
    padding: 20px 15px;
    margin-top: 150px; /* Ajuste para telas menores */
  }

  .page-fortune-tiger__main-title {
    font-size: 2rem;
  }

  .page-fortune-tiger__hero-description {
    font-size: 1rem;
  }

  .page-fortune-tiger__cta-button {
    padding: 12px 20px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-fortune-tiger__section {
    padding: 40px 15px;
  }

  .page-fortune-tiger__section-title {
    font-size: 1.8rem;
  }

  .page-fortune-tiger__section-text {
    font-size: 0.95rem;
  }

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

  .page-fortune-tiger__section,
  .page-fortune-tiger__card,
  .page-fortune-tiger__container,
  .page-fortune-tiger__faq-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-fortune-tiger__hero-section {
    padding-top: 10px !important; /* body já tem padding-top */
  }

  .page-fortune-tiger__strategy-item {
    font-size: 0.95rem;
    padding: 12px 15px;
  }

  .page-fortune-tiger__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-fortune-tiger__faq-answer {
    font-size: 0.9rem;
    padding: 0 20px 15px 20px;
  }
}