header {
  color: var(--primary);

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

header > h1 {
  margin: 4rem 0;
}

main > * {
  color: var(--primary-text);
}

section.associacao {
  padding: 4rem 2rem;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--gray);
  width: 100%;
  gap: 2.5rem;
}

section.associacao .logo {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

section.associacao .logo img {
  height: 12rem;
}

section.associacao .description {
  width: 100%;
  max-width: 52rem;
}

section.associacao p {
  width: 100%;
  text-align: center;
  font-weight: 500;
  font-size: 1.25rem;
}

section.focus {
  padding: 2rem;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background-color: var(--gray);
  width: 100%;
}

section.focus .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--gray);
  width: 100%;
  max-width: 1200px;
  gap: 2rem;
}

section.focus h1 {
  color: var(--dark);
  align-self: flex-start;
}

section.focus span, section.focus h2 {
  width: 100%;
  text-align: center;
}

section.focus .images {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

section.focus .images a {
  width: 100%;
  max-width: 20rem;
  margin: 0 auto;
}

section.focus .images a img {
  width: 100%;
}

section.details {
  padding: 2rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  background-color: var(--white);
  width: 100%;
  max-width: 1200px;
  gap: 2.5rem;
}

section.details h1 {
  font-weight: 600;
}

section.details .image {
  flex: 0 1 25rem;
}

section.details .image img {
  width: 100%;
}

section.details .text {
  flex: 1 1 40rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  font-size: 1.25rem;
  gap: 1rem;
}

section.details .text h1 {
  color: #DF2854;
  font-weight: 500;
}

section.details .text p {
  text-align: justify;
}

section.details .text img {
  width: 8rem;
  align-self: flex-end;
}

section.contact_us {
  padding: 5rem 0;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--primary);
  width: 100%;
}

section.contact_us h1 {
  color: var(--white);
  margin-bottom: 2.5rem;
  max-width: 30rem;
  width: 100%;
  font-size: 2rem;
}

section.values {
  padding: 6rem 2rem 4rem 2rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  background-color: var(--white);
  width: 100%;
}

section.values .values-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}

section.values .values-container .value {
  margin: 1rem;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 12rem;
  width: 100%;

  cursor: pointer;
}

section.values > h1 {
  color: var(--primary);
  align-self: center;
  margin-bottom: 2rem;
}

section.values img {
  width: 3rem;
}

section.values p {
  max-width: 10rem;
  width: 100%;
  text-align: center;
}

@media (hover: hover) and (pointer: fine) {
  section.values .value p {
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease-in-out;
  }
  
  section.values .value:hover p {
    opacity: 1;
    visibility: visible;
  }
}

section.values .value h1 {
  margin: 0.5rem;
  font-weight: 500;
  font-size: 1.2rem;
}

section.story {
  padding: 1rem 2rem;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--gray);
  width: 100%;
}

section.story h1 {
  margin-bottom: 2rem;
}

section.team {
  padding: 4rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background-color: var(--white);
  width: 100%;
}

section.team > h1 {
  color: var(--primary);
}

section.team .people {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 2rem;
}

section.team .people .person {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin: 0 2.5rem;
  cursor: pointer;

  transition: 0.3s ease-in-out;
}

section.team .people .person > * {
  margin: 0.5rem  0;
}

section.team .people .person img {
  width: 9rem;
  filter: grayscale(1);
  transition: 0.3s ease-in-out;
}

section.team .people .person h1 {
  font-size: 1.25rem;
}

@media (hover: hover) and (pointer: fine) {
  section.team .people .person:hover {
    transform: scale(1.05);
  }

  section.team .people .person:hover img {
    filter: grayscale(0);
  }
}

section.team .people .person span {
  font-size: 1rem;
  margin: 0;
}

section.team .people .person .social-media {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

section.team .people .person .social-media > a i {
  margin: 0 0.5rem;
  transition: color 0.2s ease-in-out;
}

section.team .people .person .social-media > a:hover i {
  color: var(--blue);
}