/* style/latest-promotions.css */
.page-latest-promotions {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF5E1; /* Text Main */
  background-color: #B71C1C; /* Background */
}

.page-latest-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.page-latest-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

.page-latest-promotions__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-latest-promotions__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  padding: 30px;
  border-radius: 10px;
}

.page-latest-promotions__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em);
  color: #FFD86A;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-latest-promotions__hero-description {
  font-size: 1.2em;
  color: #FFF5E1;
  margin-bottom: 30px;
}

.page-latest-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button color */
  color: #ffffff; /* Button text always white */
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: 2px solid #F2B544; /* Border color */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-latest-promotions__cta-button:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-latest-promotions__cta-button--center {
  display: block;
  margin: 30px auto 0 auto;
  max-width: fit-content;
}

.page-latest-promotions__dark-bg {
  background-color: #7A0E0E; /* Deep Red */
  color: #FFF5E1;
  padding: 60px 0;
}

.page-latest-promotions__light-bg {
  background-color: #D32F2F; /* Card BG */
  color: #FFF5E1;
  padding: 40px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-latest-promotions__section-title {
  font-size: 2.5em;
  color: #FFCC66; /* Glow */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-latest-promotions__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-latest-promotions__card {
  background-color: #D32F2F; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #F2B544; /* Border color */
}

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

.page-latest-promotions__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-latest-promotions__card-title {
  font-size: 1.5em;
  color: #FFCC66; /* Glow */
  margin: 20px 15px 10px 15px;
  font-weight: bold;
}

.page-latest-promotions__card-description {
  font-size: 1em;
  color: #FFF5E1;
  padding: 0 15px 20px 15px;
  flex-grow: 1;
  text-align: justify;
}

.page-latest-promotions__card .page-latest-promotions__cta-button {
  margin: 0 15px 20px 15px;
  width: calc(100% - 30px);
  box-sizing: border-box;
}

.page-latest-promotions__claim-steps {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  counter-reset: step-counter;
}

.page-latest-promotions__claim-steps li {
  counter-increment: step-counter;
  font-size: 1.1em;
  margin-bottom: 15px;
  padding-left: 40px;
  position: relative;
  color: #FFF5E1;
}

.page-latest-promotions__claim-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFCC66; /* Glow */
  color: #7A0E0E; /* Deep Red */
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.page-latest-promotions__why-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-latest-promotions__why-list li {
  font-size: 1.1em;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: #FFF5E1;
}

.page-latest-promotions__why-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #FFCC66; /* Glow */
  font-weight: bold;
}

.page-latest-promotions__feature-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #F2B544; /* Border color */
}

.page-latest-promotions__terms a {
  color: #FFCC66; /* Glow */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-latest-promotions__terms a:hover {
  color: #FFD86A; /* Gold */
}

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

.page-latest-promotions__faq-item {
  background-color: #D32F2F; /* Card BG */
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #F2B544; /* Border color */
}

.page-latest-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFCC66; /* Glow */
  cursor: pointer;
  background-color: #C91F17; /* Main color */
  border-bottom: 1px solid #F2B544; /* Border color */
}

.page-latest-promotions__faq-question:hover {
  background-color: #E53935; /* Auxiliary color */
}

.page-latest-promotions__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
}

.page-latest-promotions__faq-answer {
  padding: 15px 20px;
  font-size: 1em;
  color: #FFF5E1;
  background-color: #D32F2F; /* Card BG */
}

.page-latest-promotions__faq-item details > summary {
  list-style: none;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-latest-promotions__hero-content {
    padding: 20px;
  }
  .page-latest-promotions__main-title {
    font-size: clamp(2em, 4.5vw, 3em);
  }
  .page-latest-promotions__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-latest-promotions__hero-section {
    padding: 40px 15px;
  }
  .page-latest-promotions__hero-content {
    padding: 15px;
  }
  .page-latest-promotions__main-title {
    font-size: clamp(1.8em, 7vw, 2.8em);
  }
  .page-latest-promotions__hero-description,
  .page-latest-promotions__text-block,
  .page-latest-promotions__card-description,
  .page-latest-promotions__claim-steps li,
  .page-latest-promotions__why-list li,
  .page-latest-promotions__faq-answer {
    font-size: 16px;
  }
  .page-latest-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-latest-promotions__card-grid {
    grid-template-columns: 1fr;
  }
  .page-latest-promotions__cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-latest-promotions__container {
    padding: 15px;
  }

  /* Mobile responsive for images, videos, buttons */
  .page-latest-promotions img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-latest-promotions__section,
  .page-latest-promotions__card,
  .page-latest-promotions__container,
  .page-latest-promotions__hero-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
  .page-latest-promotions__hero-section {
    padding-top: 10px !important; /* body já tem padding-top */
  }
  .page-latest-promotions__cta-button,
  .page-latest-promotions__btn-primary,
  .page-latest-promotions__btn-secondary,
  .page-latest-promotions a[class*="button"],
  .page-latest-promotions 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-latest-promotions__cta-buttons,
  .page-latest-promotions__button-group,
  .page-latest-promotions__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-latest-promotions__cta-buttons {
    display: flex;
    flex-direction: column;
  }
  .page-latest-promotions__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-latest-promotions__faq-answer {
    padding: 10px 15px;
  }
}