@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');

.curso-rs {
  border: 0;
  margin: 0;
  padding: 0;
  background: white;
  font-family: "Sora", sans-serif !important;
}

.curso-rs img {
  width: 100%;
  height: auto;
  display: block;
}

.curso-rs button.acesso{
	width: 100%;
	border: 0;
	outline: 0;
	background: var(--azul2);
	color: #fff;
	font-weight: 600;
	text-align: center;
	padding: 20px 15px;
	transition: .3s;
	cursor: pointer;
}

.curso-rs button.acesso:hover{
		background: var(--azul1);
}


.curso-rs button.cert{
	width: 100%;
	border: 0;
	outline: 0;
	background: var(--azul1);
	color: #fff;
	font-weight: 600;
	text-align: center;
	padding: 20px 15px;
	transition: .3s;
	cursor: pointer;
}

.curso-rs button.cert:hover{
		background: var(--azul3);
}
.curso-rs button.cert .obs{
	display: block;
	font-size: .7rem
}
.curso-rs .intro {
  padding: 120px 10%;
  background: url('../images/rs/u.png') right 10% center no-repeat #F6F6F6;
  background-size: 40%;
  position: relative;
}

.curso-rs .intro h1 {
  width: 100%;
  margin: 0 0;
  font-size: 2rem;
  line-height: 2.6rem;
  color: var(--azul2);
  font-weight: 700;
}

.curso-rs .intro p {
  font-size: 1rem;
  line-height: 1.8rem;
  width: 100%;
  margin: 15px 0;
}

.curso-rs .intro img.bandeira {
  width: 65%;
  position: absolute;
  bottom: -120px;
  display: block;
  margin: 0 auto;
  right: 0;
}

.curso-rs .lista-de-cursos{
  padding: 120px 10%;
}


.curso-rs .lista-de-cursos h2 {
  width: 100%;
  margin: 0 0;
  font-size: 2.5rem;
  line-height: 3rem;
  color: var(--azul2);
  font-weight: 700;
}

.curso-rs .lista-de-cursos p.descricao{
  width: 80%;
  font-size: 1.2rem;
  line-height: 2rem;
  margin: 0 0 30px;
}

.curso-rs .lista-de-cursos ul.lista{
  list-style: none;
}
.curso-rs .lista-de-cursos ul.lista li.curso{
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 30px 0;
  padding: 30px;
  border-radius: 10px;
  border: solid 1px #d2f3f7;
}

.curso-rs .lista-de-cursos ul.lista li.curso:nth-child(2n) {
  flex-direction: row-reverse;
  background: #ebfdff;
}

.curso-rs .lista-de-cursos ul.lista li.curso:last-child{
  margin-bottom: 0;
}

.curso-rs .lista-de-cursos ul.lista li.curso img{
  width: 40%;
  height: 370px;
  object-fit: cover;
  border-radius: 6px;
}

.curso-rs .lista-de-cursos ul.lista li.curso .informacoes{
  width: 57%;
}

.curso-rs .lista-de-cursos ul.lista li.curso .informacoes h3{
  margin: 0 0;
  font-size: 1.6rem;
  line-height: 1.8rem;
  color: var(--azul2);
  font-weight: 700;
}

.curso-rs .lista-de-cursos ul.lista li.curso .informacoes p{
  width: 100%;
  font-size: 1rem;
  line-height: 1.8rem;
  margin: 10px 0; 
}

.curso-rs .lista-de-cursos ul.lista li.curso .informacoes button{
  border: 0; 
  outline: 0;
  padding: 10px 40px;
  background: var(--azul2);
  color: #fff;
  font-weight: 600;
  transition: .3s;
  border-radius: 6px;
  cursor: pointer;
}

.curso-rs .lista-de-cursos ul.lista li.curso .informacoes button:hover{
  background: var(--azul1);
}

@media only screen and (max-width: 1600px) {
  .curso-rs .intro {
    padding: 80px 6%;
  }
  .curso-rs .intro img.bandeira {
    bottom: -80px;
  }
  .curso-rs .lista-de-cursos {
    padding: 80px 6%;
  }
  .curso-rs .lista-de-cursos p.descricao {
    width: 90%;
    font-size: 1.1rem;
    line-height: 2rem;
  } 
}
@media only screen and (max-width: 1024px) {
  .curso-rs .intro img.bandeira {
    width: 40%;
  }
  .curso-rs .intro {
    background: url(../images/rs/u.png) bottom -30px center no-repeat #F6F6F6;
    background-size: 50%;
  }
  .curso-rs .intro img.bandeira {
    width: 40%;
    position: relative;
  }
  .curso-rs .lista-de-cursos p.descricao {
    width: 100%;
  }
  .curso-rs .lista-de-cursos ul.lista li.curso img{
    width: 100%;
  }
  .curso-rs .lista-de-cursos ul.lista li.curso .informacoes{
    margin-top: 25px;
    width: 100%;
  }
}

@media only screen and (max-width: 480px) {
  .curso-rs .intro,  .curso-rs .lista-de-cursos {
    padding: 40px 30px;
  }
  .curso-rs .intro h1 {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .curso-rs .intro p {
    font-size: .95rem;
    line-height: 1.7rem;
  }
  .curso-rs .intro img.bandeira {
    width: 70%;
    position: relative;
    bottom: -40px;
  }
  .curso-rs .lista-de-cursos h2{
    font-size: 2rem;
  }
  .curso-rs .lista-de-cursos p.descricao {
    font-size: 1rem;
    line-height: 1.7rem;
  }
  .curso-rs .lista-de-cursos ul.lista li.curso{
    padding: 25px;
  }
  .curso-rs .lista-de-cursos ul.lista li.curso img{
    height: auto;
  }
  .curso-rs .lista-de-cursos ul.lista li.curso .informacoes h3 {
    font-size: 1.4rem;
    line-height: 1.7rem;
  }
  .curso-rs .lista-de-cursos ul.lista li.curso .informacoes p {
    font-size: .95rem;
    line-height: 1.5rem;
  }
}