* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.header-father {
  height: 100vh;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 2rem;
}

.image-header {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: -1;
  object-fit: cover;
}

.header-content {
  width: 80%;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  flex-direction: column;
}

.header-h1 {
  width: 30%;
  display: flex;
  justify-content: center;
}

.header-h1 h1 {
  font-family: "Luckiest Guy", Times, serif;
  color: #fff;
  font-weight: 400;
  font-size: 3rem;
  text-align: center;
}

.header-p {
  padding: 1rem;
  width: 60%;
  display: flex;
  justify-content: center;
}

.header-p p {
  color: #fff;
  font-family: "Open Sans", Times, serif;
  font-weight: 400;
  font-size: 1rem;
  text-align: center;
}

.buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.buttons button {
  width: 18.81rem;
  height: 2.75rem;
  border-radius: 1.375rem;
  font-family: "Open Sans", Times, serif;
  font-size: 1rem;
  font-weight: 400;
}

.buttons button:hover {
  cursor: pointer;
  transform: scale(1.05);
  transition: 0.8;
}

#button2 {
  background-color: #23272a;
  color: #fff;
}

/* Section 01 */

.section-01 {
  width: 100%;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container-section-01 {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

.container-section-01-items {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-01-h1 {
  font-family: "Open Sans", Times, serif;
  font-weight: 800;
  font-size: 2.5rem;
}

.section-01-p {
  padding-top: 1rem;
  font-family: "Open Sans", Times, serif;
  font-weight: 400;
  font-size: 1rem;
}

/* Section 02 */

.section-02 {
  background-color: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container-section-02-items {
  width: 20%;
  display: flex;
  flex-direction: column;
}

.section-02-h1 {
  font-family: "Open Sans", Times, serif;
  font-weight: 800;
  font-size: 2rem;
}

.section-02-p {
  font-family: "Open Sans", Times, serif;
  font-weight: 400;
  font-size: 1rem;
  padding-top: 1rem;
}

/* Section 03 */

.section-03 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.container-section-03-items {
  width: 30%;
}

.section-03-h1 {
  font-family: "Open Sans", Times, serif;
  font-weight: 800;
  font-size: 2rem;
}

.section-03-p {
  width: 70%;
  font-family: "Open Sans", Times, serif;
  font-weight: 400;
  font-size: 1rem;
  padding-top: 1rem;
}

/* Section 04 */

.section-04 {
  background-color: #f6f6f6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

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

.section-04-h1 {
  font-family: "Luckiest Guy", Times, serif;
  font-weight: 400;
  font-size: 3rem;
  text-align: center;
  padding: 1rem;
}

.section-04-p {
  font-family: "Open Sans", Times, serif;
  width: 60%;
  font-weight: 400;
  font-size: 1rem;
  padding-top: 1rem;
  text-align: center;
}

/* footer*/

footer {
  display: flex;
  background-color: #23272a;
  height: 20vh;
}

.image-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

/* Responsividade */

@media (min-width: 1070px) and (max-width: 1245px) {
  .image-section-01 {
    width: 80%;
  }

  .section-01-h1 {
    font-size: 1.8rem;
  }

  .section-01-p {
    font-size: 0.8rem;
  }

  footer {
    height: 15vh;
  }
}

@media (min-width: 935px) and (max-width: 1069px) {
  .header-h1 h1 {
    font-size: 2rem;
  }

  .header-p p {
    font-size: 0.8rem;
  }

  .buttons button {
    width: 60%;
    font-size: 0.7rem;
  }

  .container-section-01 {
    width: 100%;
  }

  .image-section-01 {
    width: 70%;
  }

  .section-01-h1 {
    font-size: 2rem;
  }

  .section-01-p {
    font-size: 0.9rem;
  }

  footer {
    height: 10vh;
  }
}

@media (min-width: 600px) and (max-width: 934px) {
  .header-father {
    width: 100%;
  }

  .header-content {
    width: 80%;
    padding-top: 4rem; /* ajusta espaço interno */
  }

  .image-header {
    width: 100%;
  }

  .header-h1 {
    width: 100%;
  }

  .header-h1 h1 {
    font-size: 1.5rem;
  }

  .header-p {
    width: 100%;
  }

  .header-p p {
    font-size: 0.9rem;
  }

  .buttons {
    flex-direction: column;
    gap: 0.5rem;
  }

  .buttons button {
    width: 100%;
    font-size: 0.9rem;
  }

  .container-section-01 {
    display: flex;
    flex-direction: column;
  }

  .section-01 {
    width: 100%;
    height: 70%;
  }

  .container-section-01-items {
    width: 100%;
  }

  .image-section-01 img {
    width: 100%;
  }

  .section-02 {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }

  .container-section-02-items {
    width: 80%;
  }

  .section-03 {
    flex-direction: column;
  }

  .container-section-03-items {
    width: 80%;
  }

  .section-03-p {
    width: 100%;
  }

  .container-image-section-04 img {
    width: 100%;
  }
}

/* Mobile */

@media (max-width: 600px) {
  .header-father {
    width: 100%;
  }

  .header-content {
    width: 90%;
    padding-top: 1rem;
  }

  .header-h1 h1 {
    text-align: left;
  }

  .header-p {
    padding: 0;
  }

  .header-p p {
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-align: left;
  }

  .header-h1 {
    width: 100%;
  }

  .header-h1 h1 {
    font-size: 1.5rem;
  }

  .header-p {
    width: 100%;
  }

  .header-p p {
    font-size: 0.9rem;
  }

  .buttons {
    flex-direction: column;
    gap: 0.5rem;
  }

  .buttons button {
    width: 100%;
    font-size: 0.9rem;
  }

  .container-section-01 {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 2rem;
  }

  .section-01 {
    width: 100%;
    height: 70%;
  }

  .section-01-h1, .section-02-h1, .section-03-h1 {
    font-size: 1.5rem;
  }

  .section-01-p, .section-02-p, .section-03-p{
    font-size: 0.8rem;
  }

  .section-04-h1 {
    width: 100%;
    text-align: left;
    font-size: 1.5rem;
    padding: 2rem;
  }

  .section-04-p {
    width: 80%;
    font-size: 0.8rem;
    text-align: left;
  }

  .container-section-01-items {
    width: 100%;
  }

  .image-section-01 {
    width: 100%;
  }

  .image-section-01 img {
    width: 100%;
  }

  .section-02 {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }

  .container-section-02-items {
    width: 80%;
  }

  .section-03 {
    flex-direction: column;
  }

  .container-section-03-items {
    width: 80%;
  }

  .section-03-p {
    width: 100%;
  }

  .container-image-section-04 img {
    width: 100%;
  }

  footer {
    height: 100%;
  }

  .image-footer img {
    width: 70%;
  }
}
