:root {
    --cor-rosa: pink;
}

* {
    font-family: 'Mukta', sans-serif;
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
	transition: .2s linear;
    box-sizing:border-box;
}

html{
	font-size: 62.5%;
	scroll-behavior: smooth;
	scroll-padding-top: 6rem;
	overflow-x: hidden;
}

body {
	align-items: center;
	justify-content: center;
	min-height: 100vh;
    background-color: plum;
}

.logo {
	cursor: pointer;
}

.logo img {
	max-width:75px;
    max-height:75px;
	border-radius: 50px;
    width: auto;
    height: auto;
}

header {
	position:fixed;
	top:0;
	left:0;
	width:100%;
    height: 100px;
	padding: 20px 100px;
	background-color: #000000;
	display: flex;
	justify-content:space-between;
	align-items: center;
	z-index: 1000;
	box-shadow: 0 .5rem 1rem #940e4d; ;
}

header .navegacao a{
	font-size: 2rem;
	padding: 0 1.5rem;
	color: #fff;
    background: black;
	justify-content: space-between;
}

.navegacao  {
	display:flex;
	align-items: center;
	justify-content: space-between;
	overflow: auto;
	background: #000000;
}

.navegacao a {
   position:relative;
   font-size:3em;
   color: #ffffff;
   text-decoration:none;
   font-weight: 500;
   margin-left: 40px;
   font-weight: bold;
}

header nav a::after {
    content: "";
    width: 0%;
    height: 2px;
    position: absolute;
    bottom: 0;
    background: #940e4d;
    left: 0;
    transition: .3s;
}

header nav a:hover::after {
    width: 100%;
}

header .navegacao a:hover{
    font-size: 2.5rem;
    }

.btnLogin-popup {
    width:80px;
    height:50px;
    background:transparent;
    border:2px solid #ffffff;
    outline:none;
    border-radius:6px;
    cursor:pointer;
    font-size:2em;
    color:#ffffff;
    font-weight:500;
    margin-left:40px;
    transition:0.5s;
    
}

.btnLogin-popup:hover {
    background:#cc2193;
    color:#ffffff;
}

/*PARTE DO FORMULÁRIO*/

.container {
    width: 1140px;
    height: 100px;
    margin-left: 50px;
  }
  
.brand-name {
    font-size: 28px;
    float: left;
    line-height: 60px;
}
  
.list {
    float: right;
}
  
.list li {
    display: inline-block;
    font-size: 16px;
    padding: 0px 16px;
    line-height: 60px;
    cursor: pointer;
  }
  
  /* contact form */
.form-container {
    margin-top: 120px;
    margin-left: 30%;
    left: 50%;
    top: 55%;
    width: 500px;
    height: auto;
    padding: 48px 60px;
    border: 1px solid #ffffff;
    border-radius: 8px;
}
  
.textoajuda {
      color: #ffffff;
}
  
p {
      margin-top: 8px;
      color: #ffffff;

}
  
form {
      margin-top: 20px;
      padding-right: 7px;
}
  
label {
      color: #ffffff;
      position: relative;
      top: 4px;
}
  
input {
      width: 100%;
      height: 32px;
      padding-left: 5px;
      margin: 12px 0px;
      border: 1px solid #ffffff;
      color: rgb(0, 0, 0);
      border-radius: 10px;
}
  
textarea {
      width: 100%;
      padding-left: 5px;
      margin: 12px 0px;
      border: 1px solid #ffffff;
      color: rgb(0, 0, 0);
      padding-top: 5px;
      border-radius: 10px;
}
  
input:focus ,textarea:focus {
      outline: none;
}
  
.submit {
      width: 102.5%;
      height: 32px;
      background: #df57d8;
      border: none;
      cursor: pointer;
      margin-top: 10px;
      color: #fff;
      transition: 0.5s;
      border-radius: 25px;
      font-weight: bolder;
}

.submit:hover {
    background-color: #a1099a;
}


/*FIM DA PARTE DO FORMULÁRIO*/


/*PARTE DO FOOTER - RODAPE*/

.rodape{
    background-color: #940e4d;
    color: white;
    height: auto;
    width: 100%;
    font-size: 14px;
    font-family: helvetica;
	bottom: 0;
}

.rodape a{
    text-decoration: none;
    color: white;
}
.rodape p{
    margin-bottom: 5px;
}
.rodape-div{
    display: flex;
    flex-wrap: wrap;
    width:100%;
    margin: auto;
    align-items: stretch;
    padding: 60px 10px 40px 10px;
}
.rodape-div-1, .rodape-div-2, .rodape-div-3, .rodape-div-4{
    display: flex;
    width: calc(100% / 4 - 20px);
    padding: 10px;
}
.rodape .contato{
    font-size: 20px;
    color: white;
}
.rodape-direitos{
    width: calc(100% - 20px);
    background-color: black;
    padding: 10px;
    margin: 0px;
    text-align: center;
}

.rodape i {
	font-size: 2.0rem;
}

