.page-container {
  padding: 0 10px;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  padding: 0 16px;
  padding: 1rem 0;
}
.card {
  background: #1f1f1f;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}
.accordion {
  margin-top: 12px;
}
details {
  border: 1px solid #444;
  background: #1f1f1f;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 10px;
}
summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 600;
  color: #ffffff;
}
summary::-webkit-details-marker {
  display: none;
}
.summary-left {
  display: flex;
  gap: 12px;
  align-items: center;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff0000;
}
.chev {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}
details[open] .chev {
  transform: rotate(180deg);
}
.content {
  margin-top: 12px;
  color: #ffffff;
  line-height: 1.5;
}
.small {
  font-size: 13px;
  color: #ffffff;
}
/*button {
  background: #ff0000;
  color: #000;
  font-weight: 600;
  padding: 12px 22px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  margin-bottom: 20px;
}*/
.banner {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-container h1, .page-container h2  {
  background: none;
  color: #ffffff;
  font-size: 1.5rem;
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 700;
}
.page-container h2 {
     font-size: 1.2rem;
}

  .btnPromoContainer {
    margin: 0 auto;
    width: 250px;
  }
  .btn-registration {
    width: 100%;
    border-radius: 15px;
    background: #58995a;
    font-weight: 600;
    font-size: 1.5rem;
    padding: 0.3em 0.5em 0.2em;
    border: none;
    cursor: pointer;
    animation: pulse 1s infinite;
    color: white;
    &:hover {
      background-color: #31c435;
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(49, 196, 53, 0.35);
      animation: none;
    }
  }

@media only screen and (min-width: 981px) and (max-width: 1530px){
    .page-container{
        margin-top: 50px;
    }   
}

@media (max-width: 560px) {

  .card {
    padding: 14px;
  }
  .banner {
    height: 150px;
  }
}

p,
.content {
  font-size: clamp(14px, 2.5vw, 16px) !important;
}
/*button {
  width: 100%;
  max-width: 260px;
  display: block;
  margin: 0 auto 20px auto;
  font-size: clamp(14px, 2.5vw, 16px) !important;
  padding: clamp(10px, 2.8vw, 14px) clamp(18px, 4vw, 26px);
}*/
.card {
  padding: clamp(14px, 3vw, 20px);
}
details summary {
  font-size: clamp(14px, 2.8vw, 17px);
}
.banner {
  height: clamp(160px, 40vw, 260px);
}

@media (max-width: 480px) {
 
  .accordion {
    margin-top: 8px;
  }
}
.texto-rojo-centro {
  color: red;
  text-align: center;
}