* {
    /*background-color: #546347;*/
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;

}
 

.cima  {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    color: white;
    background-image: url(img/bg.jpg);
    background-size: cover;
    width: 100%;
    height: 90vh;
}

.cima .tablet {
    width: 350px;
    height: 400px;
}

.cima h1 {
    line-height: 1.0;
    font-size: 3.4rem;
}

.formulario {
    width: 500px;
    height: 500px;
    background-color: rgb(44, 26, 3);
    padding:50px 0 0 50px;
} 

 .logo {
    width: 79px;
    height: 60px;
}

.formulario h1 {
    font-family: 'Bebas Neue', sans-serif;
    /*font-size: 25px;*/
    line-height: 1.0;
    font-size: 3.9rem;
}

/* CORRETORES */

.corretores {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    background-color: black;
    width: 100%;
    height: 60vh;

}


.corretores .img_corretores {
    width: 400px;
    height: 400px;
}

.corretores .texto {
   /* border: 1px solid blue;
    width: 500px;
    height: 500px;*/
    color: white;
    font-weight: 400;


}

.corretores h1 {
    font-family: 'Bebas Neue', sans-serif;
    /*font-size: 25px;*/
    line-height: 1.0;
    font-size: 4.9rem;
    color: white;
}

/* ebooks */

.ebooks {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    background-color: rgb(44, 26, 3);
    width: 100%;
    height: 70vh;
}

.ebooks .texto {
    color: white;
}

.ebooks h1 {
    font-family: 'Bebas Neue', sans-serif;
    /*font-size: 25px;*/
    line-height: 1.0;
    font-size: 5.9rem;
    
}

.ebooks .ebook {
    max-width: 500px;
    height: 500px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}

.ebook img {
    width: 140px;
}


/* FOOTER */
footer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    background-color:  black;
    color: white;
    width: 100%;
    height: 40vh;
}

footer h3 {
    font-weight: 400;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

footer h4 {
    font-weight: 400;
    font-size: 1rem;
}

.box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}


/* FORMULARIO */
.form {
	--width-of-input: 100%;
	--border-height: 1px;
	--border-before-color: rgba(73, 72, 72, 0.39);
	--border-after-color: white;
	--input-hovered-color: #7008cf1;
	position: relative;
	width: var(--width-of-input);
   }



   .form-submit-button {
	background: hwb(210 97% 2%);
    color: rgb(44, 26, 3);
 	border-radius: 20px;
	border: none;
/*	box-shadow: 5px 5px 5px #eee;*/
	text-shadow: none;
	width: 80%;
	height: 50px;
	font-size: 2.9rem;
	font-family: 'Bebas Neue', sans-serif;
	}
	.form-submit-button:hover {
	background: white;
/*	color: #fff;*/
/*border: 1px solid #eee;*/
/*	border-radius: 20px;*/
/*	box-shadow: 5px 5px 5px #eee;*/
	text-shadow: none;
	}



   /* styling of Input */
   .input {
	color: #fff;
	font-size: 0.9rem;
	background-color: transparent;
	width: 100%;
	box-sizing: border-box;
	padding-inline: 0.5em;
	padding-block: 0.7em;
	border: none;
	border-bottom: var(--border-height) solid var(--border-before-color);
   }
   /* styling of animated border */
   .input-border {
	position: absolute;
	background: var(--border-after-color);
	width: 0%;
	height: 2px;
	bottom: 0;
	left: 0;
	transition: 0.3s;
   }
   /* Hover on Input */
   input:hover {
	background: var(--input-hovered-color);
   }
   
   input:focus {
	outline: none;
   }
   /* here is code of animated border */
   input:focus ~ .input-border {
	width: 100%;
   }








   /* Media Queri responsivo  BARALHOOOOO */

   @media only screen and (max-width: 600px) {

   
	.cima .tablet {
        display: none;
        
    }

    .formulario {
        background-color: black;
        height: 90vh;
    }
    
    .corretores {
        height: 100vh;
    }

    .ebooks {
        height: 100vh;
    }

    footer {
        height: 50vh;
    }

  }

  @media only screen and (max-width: 960px) {
    .cima .tablet {
        width: 250px;
        height: auto;
    }
    .cima {
       
        height: 100vh;
    }
       
    .corretores {
        height: 100vh;
    }

    .ebooks {
        height: 100vh;
    }

    footer {
        height: 50vh;
    }
  }








   <link rel="preconnect" href="https://fonts.googleapis.com">
   <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
   <link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">
   <link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap" rel="stylesheet">

   /* === if you want to do animated border on typing === */
   /* remove input:focus code and uncomment below code */
   /* input:valid ~ .input-border{
	 width: 100%;
   } */

  
