.pr__banner{
  position: relative;
  display: flex;
  flex-direction: column;
}
.pr__banner-img{
  width: 100%;
}
.pr__banner-title{
  position: absolute;
  top: calc(50% - 1rem);
  left: 2rem;
  font-size: 2.5rem;
  color: white;
  text-transform: uppercase;
}
.pr__message{
  background-color: var(--color-gris-fondo);
  color: var(--color-texto-gris);
  text-align: center;
  margin: 0;
  padding: 2rem 0;
  font-size: 1.2rem;
}
.pr__area-wrapper{
  max-width: 900px;
  margin: 4rem auto 5rem;
}
.pr__area-wrapper div:nth-last-child(1){
  border-bottom: none;
}
.pr__area-title{
  color: var(--color-texto-verde);
  font-size: 2rem;
}
.pr__area{
  margin: 0;
  padding: 0 0 1rem 0;
  border-bottom: 2px solid var(--color-gris-dashboard);
  li::marker {
    color: var(--color-texto-verde);
    font-size: 1.6rem;
  }
}
.pr__area-name{
  font-size: 1.3rem;
  color: var(--color-text-negro);
  font-weight: bold;
  display: flex;
  cursor: pointer;
  padding: 1rem 0;
  margin: .5rem 0;
  text-wrap: balance;
}
.pr__area-name::before{
  content: '🟢 ';
  font-size: .8rem;
}
.pr__area-more{
  margin-left: auto;
  display: flex;
  height: 1.3rem;
}
.pr__area-more span:nth-child(1){
  color: var(--color-texto-verde);
  border: 3px solid;
  transition: transform .8s;
}
.pr__area-more span:nth-child(2){
  transform: rotate(90deg);
  color: var(--color-texto-verde);
  border: 3px solid;
  margin-left: -5px;
}
.pr__prospects-list{
  display: none;
}
.pr__active span:nth-child(1){
  span{
    transform: rotate(90deg);
  }
}
.pr__prospects-li{
  margin: .5rem 0;
}
.pr__prospects-anchor{
  text-decoration: none;
  color: var(--color-texto-verde);
  text-transform: uppercase;
}
@media (max-width:780px){
  .pr__banner{
    overflow: hidden;
  }
  .pr__banner-img{
    width: 135%;
  }
}
@media (max-width:480px){
  .pr__area-name{
    font-size: 1rem;
  }
}