.page-promotions {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Fundo */
}

.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background: linear-gradient(180deg, rgba(242, 193, 78, 0.1), rgba(255, 211, 107, 0.1));
  border-bottom: 2px solid #3A2A12;
}

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

.page-promotions__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-promotions__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 900px;
}

.page-promotions__hero-content h1 {
  color: #F2C14E; /* Primary color for emphasis */
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  text-shadow: 0 0 15px rgba(242, 193, 78, 0.6);
}

.page-promotions__hero-content p {
  font-size: 1.15rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF6D6;
}

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

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Botão */
  color: #111111; /* Dark text for contrast */
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.page-promotions__cta-button:hover {
  background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__cta-button--secondary {
  background: #111111; /* Card BG */
  color: #F2C14E; /* Primary color */
  border: 2px solid #F2C14E;
}

.page-promotions__cta-button--secondary:hover {
  background: #222222;
  color: #FFD36B;
  border-color: #FFD36B;
}

.page-promotions__section {
  padding: 60px 20px;
  border-bottom: 1px solid #3A2A12;
}

.page-promotions__section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #F2C14E;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.4);
}

.page-promotions__content-area {
  max-width: 1200px;
  margin: 0 auto;
}

.page-promotions__content-area p {
  font-size: 1rem;
  color: #FFF6D6;
  text-align: center;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__grid--two-columns {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.page-promotions__card {
  background: #111111; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #3A2A12; /* Borda */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions__card img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 25px auto;
  border-radius: 8px;
  object-fit: cover;
  min-height: 200px; /* Ensure minimum image size */
  min-width: 200px; /* Ensure minimum image size */
}

.page-promotions__card-title {
  font-size: 1.5rem;
  color: #FFD36B; /* Auxiliary color */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions__card p {
  font-size: 0.95rem;
  color: #FFF6D6;
  margin-bottom: 25px;
  flex-grow: 1;
  text-align: center;
}

.page-promotions__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Botão */
  color: #111111;
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
}

.page-promotions__btn-primary:hover {
  background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__dark-section {
  background-color: #111111; /* Card BG */
  border-top: 1px solid #3A2A12;
}

.page-promotions__dark-section .page-promotions__section-title {
  color: #FFD36B;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.4);
}

.page-promotions__dark-section .page-promotions__card {
  background: #0A0A0A; /* Background color for cards within dark section */
  border-color: #3A2A12;
}

.page-promotions__vip-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 40px;
  gap: 40px;
  max-width: 1000px;
  margin: 40px auto 0 auto;
}

.page-promotions__vip-card img {
  flex-shrink: 0;
  width: 50%;
  max-width: 400px;
  margin-bottom: 0;
  border-radius: 8px;
  min-height: 250px;
}

.page-promotions__vip-content {
  text-align: left;
  flex-grow: 1;
}

.page-promotions__vip-content h3 {
  font-size: 1.8rem;
  color: #F2C14E;
  margin-bottom: 20px;
}

.page-promotions__vip-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-promotions__vip-content ul li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23F2C14E"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #FFF6D6;
  font-size: 1rem;
}

.page-promotions__how-to-claim {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
  margin-top: 40px;
}

.page-promotions__how-to-claim img {
  flex-shrink: 0;
  width: 45%;
  max-width: 500px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  min-height: 250px;
}

.page-promotions__steps {
  flex-grow: 1;
  text-align: left;
}

.page-promotions__step-item {
  background: #111111;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions__step-item h3 {
  color: #FFD36B;
  font-size: 1.25rem;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-promotions__step-item p {
  color: #FFF6D6;
  font-size: 0.95rem;
  margin-bottom: 0;
  text-align: left;
}

.page-promotions__security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-promotions__feature-item {
  background: #0A0A0A;
  border: 1px solid #3A2A12;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions__feature-item h3 {
  color: #F2C14E;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.page-promotions__feature-item p {
  color: #FFF6D6;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.page-promotions__faq-list {
  margin-top: 40px;
}

details.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #3A2A12; /* Borda */
  overflow: hidden;
  background: #111111; /* Card BG */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

details.page-promotions__faq-item summary.page-promotions__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: #FFD36B; /* Auxiliary color */
  font-weight: 600;
}

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

details.page-promotions__faq-item summary.page-promotions__faq-question:hover {
  background: #222222;
}

.page-promotions__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.5;
  text-align: left;
}

.page-promotions__faq-toggle {
  font-size: 1.8rem;
  font-weight: bold;
  color: #F2C14E; /* Primary color */
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
  line-height: 1;
}

details.page-promotions__faq-item .page-promotions__faq-answer {
  padding: 0 25px 20px;
  background: #0A0A0A; /* Fundo */
  border-top: 1px solid #3A2A12;
  border-radius: 0 0 8px 8px;
  color: #FFF6D6;
  font-size: 1rem;
}

.page-promotions__faq-answer p {
  margin-top: 15px;
  margin-bottom: 0;
  text-align: left;
  color: #FFF6D6;
}

.page-promotions__final-cta {
  text-align: center;
  padding-bottom: 80px;
}

.page-promotions__final-cta .page-promotions__cta-button {
  font-size: 1.25rem;
  padding: 18px 50px;
  margin-top: 40px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-promotions__vip-card, .page-promotions__how-to-claim {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-promotions__vip-card img, .page-promotions__how-to-claim img {
    width: 80%;
    max-width: 600px;
    margin-bottom: 30px;
  }

  .page-promotions__vip-content, .page-promotions__steps {
    text-align: center;
  }

  .page-promotions__vip-content ul {
    padding-left: 20px;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-promotions__hero-image img {
    border-radius: 8px;
  }
  
  .page-promotions__hero-content h1 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .page-promotions__hero-content p {
    font-size: 1rem;
  }

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

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

  .page-promotions__section {
    padding: 40px 15px;
  }

  .page-promotions__section-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-promotions__content-area p {
    font-size: 0.95rem;
  }

  .page-promotions__grid {
    gap: 20px;
  }

  .page-promotions__card {
    padding: 20px;
  }

  .page-promotions__card img {
    margin-bottom: 20px;
    min- /* Adjust min-height for mobile if needed */
  }

  .page-promotions__card-title {
    font-size: 1.3rem;
  }

  .page-promotions__card p {
    font-size: 0.9rem;
  }

  .page-promotions__btn-primary {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .page-promotions__vip-card {
    padding: 20px;
    gap: 20px;
  }

  .page-promotions__vip-card img {
    width: 100%;
    margin-bottom: 20px;
    min-height: 200px;
  }

  .page-promotions__vip-content h3 {
    font-size: 1.5rem;
  }

  .page-promotions__how-to-claim {
    gap: 20px;
  }

  .page-promotions__how-to-claim img {
    width: 100%;
    margin-bottom: 20px;
    min-height: 200px;
  }

  .page-promotions__step-item {
    padding: 15px;
    margin-bottom: 15px;
  }

  .page-promotions__step-item h3 {
    font-size: 1.1rem;
  }

  .page-promotions__faq-item summary.page-promotions__faq-question {
    padding: 15px 20px;
  }

  .page-promotions__faq-qtext {
    font-size: 1rem;
  }

  .page-promotions__faq-toggle {
    font-size: 1.5rem;
    width: 25px;
  }

  .page-promotions__faq-answer {
    padding: 0 20px 15px;
  }

  .page-promotions__faq-answer p {
    font-size: 0.95rem;
  }

  .page-promotions__final-cta .page-promotions__cta-button {
    padding: 15px 35px;
    font-size: 1.1rem;
  }

  /* General image and container responsiveness */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__cta-buttons,
  .page-promotions__button-group,
  .page-promotions__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }
}

/* Color contrast adjustments for dark background */
.page-promotions h1, .page-promotions h2, .page-promotions h3 {
  color: #F2C14E; /* Primary color */
}

.page-promotions p, .page-promotions li {
  color: #FFF6D6; /* Text Main */
}

.page-promotions__card {
  color: #FFF6D6;
}

.page-promotions__card-title {
  color: #FFD36B;
}

.page-promotions__btn-primary {
  color: #111111; /* Dark text for contrast on gold button */
}

.page-promotions__cta-button--secondary {
  color: #F2C14E; /* Primary color on dark background */
}

.page-promotions__faq-question {
  color: #FFD36B;
}

.page-promotions__faq-qtext {
  color: #FFD36B;
}

.page-promotions__faq-toggle {
  color: #F2C14E;
}

.page-promotions__faq-answer p {
  color: #FFF6D6;
}