body {
  margin: 0px;
  padding: 0px;
  font-family: 'Poppins', sans-serif;
}

a {
  text-decoration: none;
}

/* ================================================== computadora ================================================== */

.custom-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: hsl(0deg 0% 0% / 55%);
  z-index: 0;
}

.custom-container {
  max-width: 100%;
  background-color: black;
  position: relative;
  margin-bottom: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 58.59vw;
  background-size: cover;
  background-position: center;
  text-align: center;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}

.text-wrapper {
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 50%;
  text-align: left;
  padding-left: 20px;
  z-index: 2;
  position: absolute;
  left: 0px;
}

.highlight-subtitle {
  position: absolute;
  top: 8vw;
  font-size: 2.5vw;
  font-weight: bold;
  color: hsla(0, 0%, 100%, 0.7);
  text-transform: uppercase;
}

.image-text {
  color: #85ecf4;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 23px;
  font-weight: bold;
  padding-bottom: 8px;
  border-bottom: 2px solid hsla(0, 0%, 100%, 0.25);
}

.extra-paragraph {
  width: 100%;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 600;
  color: #fff;
}

.button-container {
  position: absolute;
  bottom: -7vh;
  left: 50%;
  transform: translateX(-50%);
  color: #000;
  display: flex;
  justify-content: space-between;
  gap: 5px;
}

.interactive-button span {
  text-transform: uppercase;
  margin-bottom: 4vh;
  letter-spacing: 0.5px;
  font-size: 16px;
  font-weight: bold;
  color: #1b1b1b;
}

.interactive-button img {
  width: auto;
  height: 7vh;
  margin-bottom: 1vw;
}

.interactive-button {
  width: 20vh;
  height: 30vh;
  background: linear-gradient(
    180deg,
    hsl(198deg 76% 52% / 72%) 0,
    #85ecf4 25%,
    hsl(198deg 76% 52% / 6%)
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.interactive-button:hover,
.active-state {
  transform: translateY(-4vh);
  background: linear-gradient(
    180deg,
    hsl(198deg 76% 52%) 0,
    #85ecf4 25%,
    hsl(198deg 76% 52%)
  );
}

/* ================================================== celular ================================================== */

.container-monoplo-celulares {
  max-width: 100%;
  z-index: 2;
  overflow: hidden;
  margin-bottom: 0px;
  display: none;
}
.accordion-monoplo {
  background: white;
  padding: 0px;
  cursor: pointer;
  border-top: 1px solid #57a0a5;
}
.accordion-header-monoplo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  background: linear-gradient(
    90deg,
    hsl(198deg 76% 52% / 72%) 0,
    #85ecf4 25%,
    hsl(198deg 76% 52% / 20%)
  );
}
.title-container-monoplo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  color: #3a3a3a;
  font-weight: 100;
  text-transform: uppercase;
}
.icon-monoplo {
  height: 40px;
  width: 40px;
}
.arrow-monoplo {
  transition: transform 0.3s;
  width: 16px;
  height: 16px;
}
.content-monoplo {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out, padding 0.3s ease-in-out;
  margin-top: 0px;
  color: #4b5563;
  padding: 0px;
  margin-bottom: -5px;
}

.imagen-acordeon-monoplo {
  width: 100%;
}

.content-monoplo p {
  margin: 0px;
  padding: 10px;
  background-color: #487d81;
  color: #fff;
  font-weight: 100;
}

.highlight-title2-monoplo {
  background-color: #82e2ff;
  display: flex;
  color: #ffff;
  font-size: 6vw;
  padding: 10px 10px 10px 10px;
  text-align: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .container-monoplo-celulares {
    border-top: 0.5px solid white;
    display: block;
    width: 100%;
  }

  .custom-container {
    display: none;
  }
}
