.redes {
    position: fixed;
    left: 0;
    bottom: 40px;
    z-index: 20;
    background: #f8e5bd;
    padding: 10px;
    border-radius: 0 10px 10px 0;
    display: grid;
    gap: 10px;
}

.soc {
  position: relative;
  height: 35px;
  align-content: center;
}

.soc p {
  position: absolute;
  align-self: anchor-center;
  color: #1a5143;
  font-size: 1.2rem;
  font-weight: 700;
  width: max-content;
  background: #f8e5bd;
  padding: 12px;
  border-radius: 10px 0 0 10px;
  transition: 1s;
  opacity: 0;
  right: 0;
  z-index: 1;
}

.soc:hover p {
  right: 40px;
  opacity: 1;
  transition: 1s;
  z-index: 21;
}

.soc img {
  width: 22px;
  background: #f8e5bd;
  z-index: 22;
  position: relative;
}
