*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
body{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #f1a6039c;
}
section{
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 10px 45px;
    background: #0400ff;
    width: 600px;
    box-shadow: rgb(18, 18, 19) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}
section .text-center{
    text-align: center;
    color: #fa9908;
    font-size: 1.5rem;
    
}
.sig{
    margin-top: 10%;
    font-size: 1rem;
    color: #f5f5f5;

}

section form{
    display: flex;
    flex-direction: column;
    width: 100%;
}
form label{
    color: #f5f5f5;
    font-size: 1px;
    margin-bottom: 4px;
    border-radius: 50rem;
}
form input{
    height: 9px;
    padding: 15px;
    outline: none;
    border: 0;
    margin-bottom: 20px;
    font-size: 15px;
    transition: all 0.5s;
}
form input:focus{
    border-radius: 16px;
}
form textarea{
    padding: 10px;
    outline: none;
    border: 0;
    font-size: 15px;
    margin-bottom: 30px;
    transition: all 0.5s;
}
form textarea:focus{
    border-radius: 16px;
}
form button{
    padding: 2px;
    cursor: pointer;
    font-size: 16px;
    background: transparent;
    border: 2px solid #f1950b;
    color: #f1950b;
    transition: all 1s;
    margin-bottom: 20px;
}
form button:hover{
    background: #f5f5f5;
    color: #101026;
    border-radius: 16px;
}

/*Página do Obrigado*/

.main{
   display: flex;
   align-items: center;
   justify-content: center;
   min-height: 100vh;
   background: #101026;
   flex-direction: column;
}
.text{
    font-size: 45px;
    color: #f5f5f5;
    margin-bottom: 30px;
}
.paragrafo{
    color: #f5f5f5;
    margin-bottom: 50px;
}
.btn{
    padding: 15px 55px;
    background: #f5f5f5;
    text-decoration: none;
    color: #101026;
    font-size: 18px;
    transition: all 0.5s;
}
.btn:hover{
    border-radius: 16px;
}

/*-------- botao whatsapp-------------- */

.btn-whatsapp {
    position: absolute;
    bottom: 14px;
    right: 24px;
    z-index: 99;
}
  
  .btn-whatsapp img{
    max-width: 74px;
    transition: transform 1.6s;
  }

  img:hover{
    transform: scale(1.1);
  }
    
  

  .btn-whatsapp .tooltip-text{
    visibility: hidden;
    position: absolute;
    width: 120px;
    top: 8px;
    left: -144px;
    padding: 6px;
    border-radius: 8px;
    text-align: center;
    background-color: #0f0f0f9d;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.4s;
  }

  .btn-whatsapp:hover .tooltip-text{
    visibility: visible;
    opacity: 1;
  }

@media screen and (max-width: 768px){
.btn-whatsapp{
    img{
        max-width: 64px;
    }
}
}


/*-------- ADAPTAÇÃO PARA MOBILE-------------- */

@media screen and (max-width: 768px){
    body{
        section{
        max-width: 300px;
    }

    form{
        max-width: 200px;
    }
}
}
