/* Corpo */

main {
  padding-top: 7rem;
  min-height: 100vh;
}

section {
  margin-bottom: 1rem;
}

p,
li,
button a {
  color: var(--text-color);
}

.fs-section {
  background-repeat: no-repeat;
  height: 50rem;
  background-image: url("../img/primeira.jpg");
  object-fit: fill;
  background-position: center;
  position: relative;
  z-index: -2;
  overflow: hidden;
}

.fs-section .bg-opacity {
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(21, 21, 21, 0.4);
  z-index: -1;
}

.main-txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15rem 20%;
  gap: 2rem;
}

.main-h2 {
  width: 60rem;
  margin: 1rem;
  text-align: center;
}

.main-txt p {
  text-align: center;
  font-size: 1.8rem;
  color: #f2f2f2;
}

.philosophy {
  display: flex;
  gap: 2rem;
  background: var(--primary-color-opacity);
}

.img-bg img {
  height: 50rem;
  width: 45rem;
  object-fit: cover;
}

.ph-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 3rem;
}

.ph-list span {
  color: var(--secondary-color);
  font-size: 1.8rem;
  letter-spacing: 0.3rem;
  font-weight: 300;
}

.ph-list ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  font-size: 1.6rem;
}

.btn {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  justify-content: center;
  align-items: center;
  width: 20rem;
  font-size: 1.4rem;
  background: var(--primary-color-opacity);
  border: 0.15rem solid var(--text-color);
  border-radius: 0.3rem;
  cursor: pointer;
}

.photos {
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

.gallery-ph {
  display: flex;
  gap: 2rem;
  padding: 1rem 0;
}

.photos h3 {
  color: var(--text-color);
}

.gallery-ph img {
  width: 100%;
  height: 30rem;
  object-fit: cover;
  border-radius: 0.2rem;
}

.photos button {
  align-self: flex-end;
  background: #fff;
  max-width: 10rem;
}

.process {
  padding: 3rem;
}

.process h3 {
  color: var(--text-color);
}

.process-contain {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 0;
}

.process-content {
  border: 0.1rem solid var(--text-color);
  border-radius: 0.2rem;
  padding: 2rem;
  text-align: center;
  width: 23rem;
}

.process-content div {
  padding-top: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 1.3rem;
  line-height: 2rem;
}

.process-content img {
  height: 2rem;
  width: 2rem;
}

.process-content p {
  color: var(--yellow);
  font-weight: 300;
  text-transform: uppercase;
  font-size: 1.4rem;
}

.process-content span {
  color: var(--text-color);
}

/* Iphone SE */
@media screen and (min-width: 375px) {
  .process-content {
    width: 100%;
  }
}

/* Celulares */
@media screen and (max-width: 767px) {
  .main-txt {
    padding: 15rem 5%;
  }

  .main-h2 {
    width: 100%;
  }

  .main-txt p {
    font-size: 1.6rem;
  }

  .photos {
    padding: 1rem;
  }

  .gallery-ph {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .gallery-ph img {
    height: 20rem;
  }

  .img-bg img {
    height: 40rem;
    width: 30rem;
    object-fit: cover;
  }

  .img-bg img {
    display: none;
  }

  .process {
    padding: 1rem;
    margin: 0;
  }

  .process-contain {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 1rem 0;
  }

  .process-content {
    padding: 1rem;
  }

  .gallery-ph {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

/* Tablets */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .main-txt {
    padding: 15rem 5%;
  }

  .photos {
    padding: 1rem;
  }

  .gallery-ph {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .gallery-ph img {
    height: 23rem;
  }

  .img-bg img {
    height: 40rem;
    width: 30rem;
  }

  .philosophy {
    gap: 1rem;
  }

  .ph-list {
    padding: 2rem;
  }

  .ph-list span {
    font-size: 1.6rem;
  }

  .process {
    padding: 1rem;
    margin: 0;
  }

  .process-contain {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 1rem 0;
  }
}
