.brands-hero-content {
  height: 60vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.brands-hero-content h1 {
  font-size: 3rem;
  color: white;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
}

.brands-hero-content p {
  font-size: 1rem;
  margin-top: 1vw;
  color: white;
  font-weight: 300;
  text-align: center;
}

.brands-hero-blur-1 {
  position: absolute;
  width: 50%;
  left: 0;
  height: 60vh;
  top: 0;
  margin: auto;
  z-index: -1;
}

.brands-hero-blur-2 {
  position: absolute;
  width: 50%;
  height: 60vh;
  right: -10%;
  bottom: -40%;
  margin: auto;
  z-index: -1;
}

.brands-hero-blur-1 img {
  transform: scaleX(-1) rotateZ(25deg);
}

.brands-hero-blur-2 img {
  transform: rotateZ(25deg);
}

.brands-hero-blur-1 img,
.brands-hero-blur-2 img {
  width: 100%;
  height: 100%;
}

.brands-hero-blur-3 {
  position: absolute;
  width: 50%;
  left: 0%;
  height: 60vh;
  bottom: -100%;
  margin: auto;
  z-index: -1;
}

.brands-hero-blur-3 img {
  transform: scaleX(-1);
  width: 100%;
  height: 100%;
}

.fireworks {
  position: absolute;
  left: 20%;
  bottom: 20%;
  margin: 0 auto;
  width: 80%;
  z-index: -2;
  opacity: 0.4;
}

.fireworks::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 1) 100%);
}

.fireworks::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 1) 100%);
}

.fireworks img {
  width: 100%;
  height: 100%;
}

body {
  overflow-x: hidden;
  overflow-y: scroll;
}

.text {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: fit-content;
  height: fit-content;
  max-width: 80%;
}

.summary summary {
  padding: 3% 0;
  position: relative;
  font-weight: 500;
}

.summary summary::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  opacity: 0.6;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) -27.95%, #FFF 48.21%, rgba(255, 255, 255, 0.00) 124.37%);
}

.summary p {
  color: rgba(255, 255, 255, 0.60);
  margin-block: 3%;
  position: relative;
}

.summary p::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: 0;
  width: 100%;
  height: 1px;
  opacity: 0.6;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) -27.95%, #FFF 48.21%, rgba(255, 255, 255, 0.00) 124.37%);
}

.summary[open] summary {
  color: white;
}

.summary:not([open]) summary {
  color: rgba(255, 255, 255, 0.60);
}

.summary[open] .toggle-icon {
  transform: rotate(0deg);
}

.summary:not([open]) .toggle-icon {
  transform: rotate(180deg);
}

.summary-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: -5%;
}

.summary {
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: all 0.5s;
  width: 60vw;
}

.summary[open] {
  max-height: 500px; /* Ajusta según el contenido */
}

.summary summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.summary summary::-webkit-details-marker {
  display: none;
}

#faq-nav-link{
  list-style: disc;
  list-style-position: inside;
}
#faq-nav-link a{
  color: white;
}

/* Media Queries */
@media (width < 1020px) {
  .brands-hero-content{
    height: 400px;
  }
  .summary {
    width: 100%;
  }
  
  .summary-container {
    padding-inline: 20px;
    margin-bottom: 10%;
  }
  .fireworks{
    top: 40%;
    left: 0;
    width: 100%;
  }
  .brands-hero-blur-3{
    bottom: 0;
  }
  .fireworks img{
    height: auto;
    bottom: auto;
  }
  .brands-hero-blur-2{
    right: auto;
    bottom: auto;
  }
}
@media (width < 500px) {
  .summary-container {
    margin-top: -20%;
    padding-inline: 20px;
    margin-bottom: 10%;
  }
}
