@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  outline: none;
  scroll-behavior: smooth;
}

:root {
  --cor-background: #fff;
  --color-icones: #fff;
  --color-linhaVertical: #fff;
  --color-fonteBranca: #fff;
  --color-header: #e30613;
  --color-linhaFooter: #e30613;
  --color-borderIMG: #9a1915;
  --color-corLinha: #9a1915;
  --color-footer: #9a1915;
  --color-menu: #9a1915;
  --color-abaCheck: #9a1915;
  --color-fontePreto: #000;
  --color-aba: #e0e0e0;
}

html {
  overflow-x: hidden;
}

body {
  background-color: #ffffffff;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 50;
  font-style: normal;
}

/* início do conteúdo carreiras */

.introducao {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
  margin-top: 30px;
}

#intro-content {
  max-width: 60%;
  margin-bottom: 50px;
}

.img-introducao {
  display: flex;
  justify-content: center;
  align-items: center;
}

#img-intro {
  height: 300px;
  width: 300px;
  border-radius: 50%;
  object-fit: cover;
  margin-left: 20px;
  margin-right: 140px;
  margin-top: 110px;
}

#intro-1 {
  margin-top: 60px;
  margin-left: 70px;
}

.titulo-intro {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 2.5rem;
  color: #000000;
  margin-top: 4rem;
}

.titulo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.text-intro {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin-top: 30px;
  font-size: large;
}

.line-text {
  height: 0.2rem;
  background-color: var(--color-corLinha);
  width: 15rem;
}

.main-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.topo {
  display: flex;
  margin: 3rem;
  gap: 5rem;
  justify-content: center;

}

.img-card {
  width: 30rem;
  height: 20rem;
}

.text-card h2 {
  width: 30rem;
  text-align: start;
  margin-top: 2%;
}

.text-card p {
  width: 30rem;
  text-align: justify;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin-top: 30px;
  font-size: large;
}

/* final do conteúdo carreiras */


/* RESPONSIVIDADE PARA TABLET */
@media screen and (max-width: 1023px) and (min-width: 768px) {

  /* MAIN */
  .topo,
  .topo2,
  .fim1,
  .fim2 {
    display: flex;
    flex-wrap: wrap;
  }

  /* FIM DA MAIN */
}

/* RESPONSIVIDADE PARA CELULAR */
@media screen and (max-width: 767px) {
  #line {
    width: 80%;
  }

  /* MAIN */
  .topo,
  .topo2,
  .fim1,
  .fim2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .img-card {
    width: 20rem;
    height: 18rem;
    padding: 2rem 2rem;
  }

  .text-card h2 {
    width: 20rem;
    text-align: start;
    margin-top: 2%;
    padding: 0 2rem;
  }

  .text-card p {
    width: 20rem;
    text-align: justify;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    margin-top: 20px;
    font-size: large;
    padding: 0 2rem;
  }
  /* FIM DA MAIN */


}

@media screen and (max-width: 1440px) {
  .topo .text-card .img-card{
    width: 25rem;
  }
  
  .topo .text-card h2, .topo .text-card p{
    width: 25rem;
  }
  }