@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*{
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.btnfixed {
  display: none;
}

.titulo {
  background: #ffffff;
  padding: 10px calc((100% - 1100px) / 2);
  display: flex;
  flex-wrap: wrap;
}

.titulo h2 {
  font-size: 20px;
  color: #555;
  text-align: left;
  margin-top: 20px;
  border-bottom: 2px solid #555;
}

.titulo h2:hover {
  color:#777;
  border-bottom: 2px solid  #777;
}

.titulo a {
  color: inherit;
}

/* contato */

.contato {  
    padding: 10px calc((100% - 1100px) / 2);
    padding: 0px 60px 30px 60px;
    display: flex;
    flex-wrap: wrap; 
    justify-content: center;
    background: #efefef;    
    margin: 0 auto; 
    margin-top: 50px;
    box-shadow: 0px 2px 3px rgba(0,0,0,0.2);  
}

.contato .contato-endereco {
  padding-top: 15px;
  padding-right: 50px;
  min-width: 300px;  
}

.contato .contato-endereco:first-child {
  margin-right: 90px;
}

.contato .contato-endereco h3 {
  font-size: 18px;
  font-weight: normal;
  color: green;
  padding-top: 15px;
}

.contato .contato-endereco h3:first-child{
  padding-top: 0px;
}

.contato .contato-endereco p {
  font-size: 14px;
  color: #111111;  
}

/* mapa */

.mapa {
  background: #fff;
  padding: 10px calc((100% - 1100px) / 2); 
  padding: 30px 30px 0px 30px;   
  display: flex;
  flex-wrap: wrap; 
  margin: 0 auto;       
}

 .mapa-curso {    
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;    
  box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
}

/* formulário */

.container{  
  padding: 30px 30px 30px 30px;
    background: #fff;
    width: 1100px; 
    margin-left: 30px;     
    margin: 0 auto;
    margin-top: 20px; 
    margin-bottom: 20px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
  }

  .container h2 {
    color: green;
  }

  .container form{
    padding: 0px 0 0 0;
  }
  .container form .form-row{
    display: flex;
    margin: 32px 0;
  }
  form .form-row .input-data{
    width: 1100px; 
    height: 40px;
    margin: 0 20px;
    position: relative;
  }
  form .form-row .textarea{
    height: 70px;
  }
  .input-data input,
  .textarea textarea{
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    font-size: 17px;
    border-bottom: 2px solid rgba(0,0,0, 0.12);
    background: #fff;
  }
  .input-data input:focus ~ label, .textarea textarea:focus ~ label,
  .input-data input:valid ~ label, .textarea textarea:valid ~ label{
    transform: translateY(-20px);
    font-size: 14px;
    color: green;
  }
  .textarea textarea{
    resize: none;
    padding-top: 10px;
  }
  .input-data label{
    position: absolute;
    pointer-events: none;
    bottom: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
  }
  .textarea label{
    width: 100%;
    bottom: 40px;
    background: #fff;
  }
  .input-data .underline{
    position: absolute;
    bottom: 0;
    height: 2px;
    width: 100%;
  }
  .input-data .underline:before{
    position: absolute;
    content: "";
    height: 2px;
    width: 100%;
    background: green;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
  }
  .input-data input:focus ~ .underline:before,
  .input-data input:valid ~ .underline:before,
  .textarea textarea:focus ~ .underline:before,
  .textarea textarea:valid ~ .underline:before{
    transform: scale(1);
  }
  .submit-btn .input-data{
    overflow: hidden;
    height: 45px!important;
    width: 20%!important;
  }
  .submit-btn .input-data .inner{
    height: 100%;
    width: 300%;
    position: absolute;
    left: -100%;
    background: green;
    transition: all 0.4s;
  }
  .submit-btn .input-data:hover .inner{
    background: rgb(10, 156, 10);
    box-shadow: 0px 4px 15px rgba(0,0,0,0.8);
  }

  .submit-btn .input-data input{
    background: none;
    border: none;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer !important;
    position: relative;
    /* z-index: 2; */
  }

  #limpar {
    background-color: #eb511f;
  }
  #limpar:hover{
    background-color: #f06435;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.8);
    border: 1px solid #f36d41;
  }


  @media (max-width: 700px) {

    .mapa {
      padding: 10px;
    }

    .mapa-curso {
      height:100%;
      width:100%;
    }

    .contato {
      margin: 10px;
    }
    .contato-form {
      padding: 10px;
    }

    .contato .contato-endereco:first-child {
      margin-right: 0px;
    }

    .contato .contato-endereco {
      padding-right: 0px;
    }


    .container {
      width: 100%;
      
    }
    .container .text{
      font-size: 30px;
    }
    .container form{
      padding: 10px 0 0 0;      
    }
    .container form .form-row{
       display: block;
      /* justify-content: space-evenly; */
    }

    .container form .form-row:last-child{
      display: flex;
     justify-content: space-evenly; 
   }
    form .form-row .input-data{
      margin: 35px 0!important;
      width: 100%;
    }
    .submit-btn .input-data{
      width: 40%!important;
    }

    .btnfixed {
      display: flex;
    }
    
  }