/* 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;
  /* justify-content: space-between; */
  /* width: 50%; */
  /* background-color: #f1f1f1; */
  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 */
}

.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;
  /* width: 100%; */
}

.integrante-texto p {
  text-align: justify;
  width: 80%;
}

.form-container {
  margin-top: 1rem;
}

.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;
    /* margin-bottom: -45px; */
  }

  .hero-wrapper {
    display: flex;
  }

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

.section-title h2 {
  margin-top: 2rem;
  font-weight: bold;
}

#success-message {
  position: fixed;
  left: 50%;
  top: 2rem;
  transform: translateX(-50%);
  background-color: #4CAF50;
  color: white;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: 250ms linear all;
  z-index: 9999;
}

#success-message.active {
  opacity: 1;
  visibility: visible;
}