.mostrar-mas-componente {
  font-family: "Roboto", sans-serif;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.mostrar-mas-componente .toggle-btn {
  padding: 0;
  margin-left: auto;
  border: none;
  background-color: transparent;
  cursor: pointer;
  font-family: Roboto;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #ffffff;
  margin: 50px 0 0 auto;
}
.mostrar-mas-componente .toggle-btn span {
  margin-right: 10px;
}
.mostrar-mas-componente .toggle-btn:hover {
  text-decoration: underline;
}
.mostrar-mas-componente .contenido {
  font-size: toRem(15);
  line-height: 1.6;
  color: #444;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.3s ease-out,
    opacity 0.3s ease-out;
}
.mostrar-mas-componente .contenido.open {
  max-height: 100%;
  opacity: 1;
}
.mostrar-mas-componente .floating-collapse-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 2px solid #ffffff;
  border-radius: 50px;
  background-color: white;
  cursor: pointer;
  font-family: Roboto;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
}
.mostrar-mas-componente .floating-collapse-btn .chevron {
  width: 16px;
  height: 16px;
}
.mostrar-mas-componente .floating-collapse-btn:hover {
  background-color: #ffffff;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
.mostrar-mas-componente .floating-collapse-btn:hover .chevron {
  filter: brightness(0) invert(1);
}
.mostrar-mas-componente .floating-collapse-btn:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .mostrar-mas-componente .floating-collapse-btn {
    bottom: 20px;
    right: 40px;
    padding: 12px 20px;
    font-size: 14px;
  }
  .mostrar-mas-componente .floating-collapse-btn .chevron {
    width: 20px;
    height: 20px;
    margin: 0;
  }
}
@media (max-width: 768px) {
  .mostrar-mas-componente .toggle-btn {
    font-size: 14px;
    line-height: 20px;
  }
}