.conversao__descricao{
    margin-top: 10px;
    height: 500px;
    max-height: 550px;
    width: 50%;
    background: linear-gradient(90deg, #4c0677, #800ab1, #bd0fea);
    border-radius: 34% 66% 65% 35% / 72% 32% 68% 28% ;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center ;
}

.conversao__descricao--titulo{

    font-family: open sans, cursive;
    font-size: 2rem;
    color: white;
    margin-bottom: 10px;

}


.conversao__descricao--texto{
    width: 80%;
    text-align: justify;
    color: white;
    font-family: open sans, cursive;
    font-size: 1rem;

}


.conversao__descricao--mensagem{
    width: 80%;
    font-weight: bold;
    align-self: center;
    text-align: start;
    margin: 10px 0 40px 0;
    text-align: justify;
    color: white;
    font-family: open sans, cursive;
    font-size: 1.2rem;

}

.descricao__button__container{
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 50%;
}







.Btn {
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition-duration: .4s;
    cursor: pointer;
    position: relative;
    background-color: rgb(31, 31, 31);
    overflow: hidden;
  }
  
  .svgIcon {
    transition-duration: .3s;
  }
  
  .svgIcon path {
    fill: white;
  }
  
  .text {
    position: absolute;
    color: rgb(255, 255, 255);
    width: 120px;
    font-weight: 600;
    opacity: 0;
    transition-duration: .4s;
  }
  
  .Btn:hover {
    width: 110px;
    transition-duration: .4s;
    border-radius: 30px;
  }
  
  .Btn:hover .text {
    opacity: 1;
    transition-duration: .4s;
  }
  
  .Btn:hover .svgIcon {
    opacity: 0;
    transition-duration: .3s;
  }

                                 /* css do botão do linkedin*/

  .btn--linkdin {
    background-color: rgb(31, 31, 31);
    border: 1px solid #000000;
    padding: 5px;
    position: relative;
    width: 7.2em;
    height: 2em;
    transition: 0.5s;
    font-size: 17px;
    border-radius: 0.4em;
    
}

.btn--linkdin p {
  position: absolute;
  top: 0.4em;
  left: 1.2em;
  margin: 0;
  padding: 0;
  transition: .5s;
  color: white;
}

.btn--linkdin svg {
  position: absolute;
  top: 0.45em;
  right: 0.5em;
  margin: 0;
  padding: 0;
  opacity: 0;
  transition: 0.5s;
  height: 1em;
  fill: #fff
}

.btn--linkdin:hover p {
  left: 0.6em;
  color: #fff
}

.btn--linkdin:hover svg {
  opacity: 1;
}

.btn--linkdin:hover {
  background-color: #0077b5;
}


/*layout responsivo*/
@media (max-width: 767px){


    .conversao__descricao{
        margin-top: 10px;
        height: 500px;
        max-height: 550px;
        width: 90%;
        border-radius: 22% 78% 17% 83% / 71% 37% 63% 29% ;
    }

    .descricao__button__container{
        width: 70%;

    }
    
    .conversao__descricao--titulo{

      font-size: 1.5rem;
  }

  .conversao__descricao--texto{
    width: 80%;
    text-align: justify;
    color: white;
    font-family: open sans, cursive;
    font-size: 0.85rem;

}

}