/* GLOBAL */

:root {
  --hero-wrapper: 40vh;
} 

body {
  overflow-x: none;
}

/* HERO */

section.hero {
  height: 30vh;
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.hero-wrapper {
  display: flex;
  align-items: center;
  height: var(--hero-wrapper);
  width: 80%;
  display: flex;
  /* height: 100%; */
  justify-content: flex-end;
  /* margin: 0 auto; */
  height: 100%;
}

.hero-text {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: white;
  margin-bottom: 2rem;
}

.hero-text h2 {
  font-size: 3rem;
}

.dropdown-section {
  margin-bottom: 4px;
  border: 1px solid var(--color-1);
}

.dropdown-title {
  display: flex;
  align-items: center;
  padding: 10px;
  cursor: pointer;
}

.dropdown-title h3 {
  margin: 0;
  flex: 1;
}

.dropdown-content {
  padding: 10px;
  display: none;
  margin: auto;
}

.dropdown-title i {
  font-size: 1rem;
  color: var(--color-1);
}

.areas-atuacao {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* centers the flex items */
}

.section-title h2 {
  margin: 2rem 0;
  text-align: justify;
  text-align-last: center;
}

.area-atuacao {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 256px;
  width: 256px;
  padding: 1rem; /* adds some margin between the items */
  margin-bottom: 1rem;
  border: 1px solid var(--color-1);
}

.area-atuacao h3 {
  text-align: center;
}

.equipe-integrante {
  display: flex;
  justify-content: center;
  margin: 4rem auto;
}

.integrante-left {
  flex: 1;
  margin: auto;
}

.integrante-right {
  flex: 1;
  margin: auto;
}

.integrante-image, .integrante-titulo, .integrante-texto {
  display: flex;
  align-items: center;
  justify-content: center;
}

.texto p {
  text-align: justify;
  text-align-last: center;
  width: 100%;
  font-weight: bold;
}

.hero-wrapper {
  display: none;
}

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

  section.hero {
    height: 25vh;
  }

  .hero-wrapper {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
  }

  .hero-text h2 {
    margin-top: 6rem;
    font-size: 3rem;
  }
}

@media screen and (max-width: 414px) {
  section.hero {
    height: 25vh;
    display: flex;
    align-items: center;
  }

  .hero-wrapper {
    display: flex;
  }

  .hero-text h2 {
    margin-top: 10rem;
    font-size: 2rem;
  }
}