body {
  margin: 0;
  font-family: 'Barlow', sans-serif;
  font-size: 1.5em;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
}

header {
  background-color: black;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 1% 2% 1% 2%;
}

.menu li {
  display: flex;
  flex-direction: row;
  color: white;
}
.menu a:hover{
 color:  #ff9b00;

}

.banner img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: auto;
}

.banner-mobille img {
  display: none;
  width: 100%;
  display: block;
  object-fit: cover;
  height: auto;
}

.banner-mobille {
  display: none;
}

.escolhercampus {
  background-color: #333333;
  margin: 0;
  padding: 2% 2% 2% 2%;
  text-align: center;
  color: white;
}

.escolhercampus p,
h1 {
  display: block;
  margin-block-start: 0em;
  margin-block-end: 0em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}

.imgdoscampus img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: auto;
  transform: scale(1);
  transition: transform 0.3s ease;
}

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

.imgdoscampus {
  display: flex;
  gap: 10%;
  margin: 2% 0% 0% 0%;
}

.logosvestibular {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  background-color: #ff9b00;
  padding: 2% 2% 2% 2%;
}

.logosvestibular-mobille {
  display: none;
}

.logosvestibular img {
  width: 70%;
  height: auto;
}

.cursos {
  background-color: #333333;
  display: flex;
  flex-direction: row;
  padding: 1% 2% 1% 2%;
}

.nossoscursos img {
  width: 80%;
}

.nossoscursos h1 {
  color: rgb(255, 255, 255);
  font-size: 4em;
  text-transform: uppercase;
  font-weight: 900;
}

ul {
  list-style-type: none;
  padding: 0;
  color: rgb(255, 255, 255);
  font-size: 1em;

}

h2 {
  color: #ff9b00;
  font-size: 0.8em;
  text-transform: uppercase;
}

.nossoscursos {
  width: 30%;
}

.cidades {
  width: 70%;
  display: flex;
  flex-direction: row;
  padding: 1% 2% 1% 2%;
  gap: 2%;
  justify-content: space-between;
}

.cidade h2 {
  margin-block-start: 0em;
  margin-block-end: 0em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}

.cidade ul {
  margin-block-start: 0em;
}

a {
  text-decoration: none;
  color: white;
}

.cidade a {
  text-decoration: none;
  color: white;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.cidade a:hover {
  background-color: #ff9b00;
}

.linha {
  background-color: #f2224e;
  height: 10px;
}

footer {
  background-color: black;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 1% 2% 1% 2%;

}