<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.patrocinio {
  background-color: #333;
}
.patrocinadores {
  display: flex;
  flex-wrap: wrap;
}
.patrocinio h3 {
  text-align: end;
  color: #254aa5;
  font-size: 4em;
}
.patrocionoContent {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cat-list {
  display: flex;
  justify-content: flex-end;
  width: 40%;
  color: white;
  margin-left: 60%;
}
.catTitle {
  width: 0;
  overflow: hidden;
  transition: all 1s;
}
.cat-list &gt; div {
  display: flex;
  align-items: center;
  transition: all 1s;
  width: 20px;
  cursor: pointer;
  margin-left: 20px;
}
.cat-list &gt; div:hover {
  width: 150px;
}
.cat-list &gt; div:hover .catTitle {
  width: 100px;
}
.cat-list .color {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.cat-list div:nth-child(1) .color {
  /* background-color: #ff6a3d; */
  background-color: #84f235;
}
.cat-list div:nth-child(2) .color {
  /* background-color: #fadb7d; */
  background-color: #56a662;
}
.cat-list div:nth-child(3) .color {
  /* background-color: #9daaf2; */
  background-color: #9aafd9;
}
.cat-list div:nth-child(4) .color {
  background-color: #cc3232;
}
.catActive {
  width: 100px;
}
.catActive .catTitle {
  width: 80px;
}
.cada {
  width: 16.6%;
  display: flex;
  justify-content: center;
  padding: 20px;
  position: relative;
}
.cada .corPatrocinio {
  position: absolute;
  transition: all 0.5s;
  opacity: 0;
}
.cada.activeCada .corPatrocinio {
  opacity: 1;
}
.cat-open {
  width: 150px !important;
}
.cat-open .catTitle {
  padding-left: 10px;
  width: 100px;
}
a.link-patrocinio {
  position: relative;
  width: 90px;
  height: 90px;
}
a.link-patrocinio .corPatrocinio {
  top: 0px;
  left: 0;
}

.pb {
  position: absolute;
  transition: all 0.5s;
  top: 0px;
  left: 0;
}
</pre></body></html>