/**
 * About Page Styles
 */

body main #sectionsContainer {
  display: flex;
  flex-direction: column;
  gap: 85px;
  margin-bottom: 70px;
}

body main #sectionsContainer section {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

body main #sectionsContainer section h2 {
  color: var(--color-vermelho-recife);
  font-family: "All Round Gothic", sans-serif;
  font-size: 2.25rem;
  font-weight: bold;
  text-transform: lowercase;
}

body main #sectionsContainer section div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

body main #sectionsContainer section h3 {
  font-family: "Kantumruy Pro SemiBold", sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
}

body main #sectionsContainer section p {
  font-size: 1.125rem;
}

body main #sectionsContainer section p span {
  font-weight: 600;
  color: var(--color-vermelho-recife);
}

body main #sectionsContainer section p strong {
  color: var(--color-vermelho-recife);
}

body main #sectionsContainer section #aboutContentWrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

body main #sectionsContainer section #aboutTextContent {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

body main #sectionsContainer section #aboutTextContent #aboutIntroText {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

body main #sectionsContainer section #imageContainer {
  position: relative;
}

body main #sectionsContainer section #imageContainer #orangeBox {
  bottom: 0;
  background-color: var(--color-vermelho-recife);
  border-radius: 8px;
  height: 200px;
  position: absolute;
  width: 100%;
  z-index: -9999;
}

body main #sectionsContainer section #symbolContentWrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

body main #sectionsContainer section #symbolTextContent {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

body main #sectionsContainer section #logosContainer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

body main #sectionsContainer section #logosContainer video {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

/* Estilos Mobile (max-width: 767px) */
@media screen and (max-width: 767px) {
  body main #sectionsContainer {
    gap: 60px;
    margin-bottom: 60px;
  }

  body main #sectionsContainer section #imageContainer {
    width: 100%;
    padding: 0;
  }

  body main #sectionsContainer section #imageContainer img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
  }

  body main #sectionsContainer section #imageContainer #orangeBox {
    height: 150px;
    width: calc(100% - 20px);
    left: 10px;
    right: 10px;
  }

  body main #sectionsContainer section #logosContainer video {
    max-width: 100%;
  }
}

@media screen and (min-width: 768px) {
  body main #sectionsContainer section h2 {
    font-size: 2.5rem;
  }

  body main #sectionsContainer section div {
    gap: 10px;
  }

  body main #sectionsContainer section #aboutContentWrapper {
    gap: 40px;
  }

  body main #sectionsContainer section #symbolContentWrapper {
    gap: 40px;
  }

  body main #sectionsContainer section #imageContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  body main #sectionsContainer section #imageContainer img {
    width: 600px;
  }

  body main #sectionsContainer section #imageContainer #orangeBox {
    height: 250px;
  }
}

@media screen and (min-width: 1024px) {
  body main #sectionsContainer {
    gap: 95px;
    margin-bottom: 90px;
  }

  body main #sectionsContainer section h2 {
    font-size: 3rem;
  }

  body main #sectionsContainer section h3 {
    font-size: 1.375rem;
  }

  body main #sectionsContainer section div {
    gap: 15px;
  }

  body main #sectionsContainer section #aboutContentWrapper {
    flex-direction: row;
    align-items: flex-start;
    gap: 50px;
  }

  body main #sectionsContainer section #aboutTextContent {
    flex: 1;
    gap: 22px;
  }

  body main #sectionsContainer section #imageContainer {
    flex: 0 0 auto;
    width: 100%;
    max-width: 500px;
    align-self: flex-end;
  }

  body main #sectionsContainer section #imageContainer img {
    width: 100%;
    max-width: 500px;
  }

  body main #sectionsContainer section #imageContainer #orangeBox {
    height: 300px;
  }

  body main #sectionsContainer section #symbolContentWrapper {
    flex-direction: row;
    align-items: flex-start;
    gap: 50px;
  }

  body main #sectionsContainer section #symbolTextContent {
    flex: 1;
    gap: 22px;
  }

  body main #sectionsContainer section #logosContainer {
    flex: 0 0 auto;
    width: 100%;
    max-width: 500px;
  }
}

@media screen and (min-width: 1366px) {
  body main #sectionsContainer {
    margin-bottom: 100px;
  }

  body main #sectionsContainer section h2 {
    font-size: 3.25rem;
  }

  body main #sectionsContainer section #aboutContentWrapper {
    gap: 60px;
  }

  body main #sectionsContainer section #imageContainer {
    max-width: 600px;
  }

  body main #sectionsContainer section #imageContainer img {
    max-width: 600px;
  }

  body main #sectionsContainer section #imageContainer #orangeBox {
    height: 350px;
  }

  body main #sectionsContainer section #symbolContentWrapper {
    gap: 60px;
  }

  body main #sectionsContainer section #logosContainer {
    max-width: 600px;
  }
}
