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

body {
  font-family: "Mulish", sans-serif;
}

a,
li,
ul {
  list-style: none;
  text-decoration: none;
  color: #1f1534;
}
img {
  max-width: 100%;
}

/* HEADER */

header,
footer {
  background-color: #f1fff1;
  padding: 50px 80px 0 80px;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-ul {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header-container-title {
  max-width: 440px;
  max-height: 360px;
}
.header-title {
  font-size: 40px;
  font-weight: 800;
  padding-bottom: 20px;
}

.header-subtitle {
  color: #646464;
  font-size: 18px;
  font-weight: 400;
  padding-bottom: 20px;
}

.header-button {
  background-color: #01ac08;
  color: white;
  border: none;
  padding: 20px 40px;
  border-radius: 50px;
  font-size: 14px;
  cursor: pointer;
}

/* SECTION 1 */
.div-info {
  padding: 20px 26px;
  background-color: #f6f6f6;
  max-width: 100%;
  height: 248px;
  border-radius: 16px;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.section-info {
  padding: 0 80px 120px 80px;
}

.section-info article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.section-info h2 {
  font-size: 44px;
  padding: 90px 0 50px 0;
  text-align: center;
}
.div-info div {
  background-color: white;
  padding: 14px;
  border-radius: 60px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 9px 0px #0000000d;
}

.div-info h6 {
  font-size: 16px;
}

.div-info p {
  font-size: 14px;
  color: #838383;
}

/* SECTION 2 */

.section-main {
  padding: 100px 80px 150px 80px;
  display: flex;
  flex-direction: column;
  gap: 150px;
}
.section-examples {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  gap: 117px;
}

.section-examples h3 {
  font-size: 32px;
  font-weight: 800;
  padding-bottom: 16px;
}

.section-examples ul li {
  font-size: 20px;
  font-weight: 400;
  color: #595959;
  padding-bottom: 5px;
}

/* SECTION 3 */

.section-badges {
  padding: 90px 80px 120px 80px;
}

.section-badges h2 {
  font-size: 44px;
  text-align: center;
}

.section-badges p {
  font-size: 18;
  padding-top: 16px;
  text-align: center;
  color: #838383;
}

.section-badges-info {
  padding-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.section-badges-info article {
  text-align: center;
  padding: 15px 20px;
  width: 208px;
  border-radius: 20px;
}

/* SECTION 4 */

.section-specialty {
  padding: 90px 80px 120px 80px;
}

.section-specialty article {
  padding: 50px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-specialty h2 {
  font-size: 42px;
  font-weight: 800;
  max-width: 520px;
}

.section-specialty-buttons {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 378px;
}

.section-specialty-buttons button {
  width: 378px;
  padding: 20px 0;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 800;
}

.footer-subtitle {
  font-size: 12px;
  font-weight: 400;
  padding-top: 21px;
  color: #838383;
}

.footer-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 50px;
}

.footer-items {
  display: flex;
  align-items: start;
  gap: 80px;
}

.footer-items-title {
  color: #393939;
  font-size: 18px;
  padding-bottom: 10px;
  font-weight: 700;
}

.footer-items-subtitle {
  color: #838383;
  font-size: 16px;
  font-weight: 400;
}

.footer-ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-copy {
  color: #838383;
  font-size: 14px;
}

.header-button {
  animation: pulse 2s infinite;
}

.image-back {
  background-image: url(./images/vector-1.png);
  background-repeat: no-repeat;
  background-position: center;
}

.seta {
  position: absolute;
  bottom: -50px;
  right: 500px;
}

.seta-2 {
  position: absolute;
  bottom: -50px;
  right: 500px;
  transform: scaleX(-1);
}

.img-infos {
  max-width: 700px;
}
@media (max-width: 1024px) {
  .image-back {
    background-image: none;
  }

  .seta,
  .seta-2 {
    display: none;
  }

  .section-examples h3 {
    font-size: 26px;
  }
  .section-examples ul li {
    font-size: 16px;
  }

  .img-infos {
    max-width: 400px;
  }

  .div-info h6 {
    font-size: 12px;
  }

  .div-info p {
    font-size: 10px;
    color: #838383;
  }

  .div-info div {
    background-color: white;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 9px 0px #0000000d;
  }

  .header-button {
    background-color: #01ac08;
    color: white;
    border: none;
    padding: 14px 24px;
    margin-bottom: 24px;
    border-radius: 50px;
    font-size: 12px;
    cursor: pointer;
  }

  .header-title {
    font-size: 36px;
    font-weight: 800;
    padding: 20px 0;
  }

  .header-subtitle {
    color: #646464;
    font-size: 14px;
    font-weight: 400;
    padding-bottom: 20px;
  }

  .section-info h2 {
    font-size: 36px;
    padding: 60px 0 50px 0;
    text-align: center;
  }

  .section-badges h2 {
    font-size: 36px;
    text-align: center;
  }
}

@media (max-width: 430px) {
  .header {
    flex-direction: column;
  }
  .header article img {
    width: 100px;
  }
  .image-back {
    display: none;
  }
  .header-ul {
    display: none;
    gap: 20px;
    margin-top: 10px;
  }
  .header-ul li a {
    font-size: 12px;
  }
  .header-title {
    font-size: 22px;
    text-align: center;
    padding: 20px 0;
  }
  .header-subtitle {
    font-size: 14px;
    text-align: center;
  }
  .header-button {
    display: none;
  }
  .section-info h2 {
    font-size: 24px;
    padding: 30px 0 50px 0;
    text-align: center;
  }
  .section-badges h2 {
    font-size: 24px;
    text-align: center;
  }
  .section-info article {
    flex-direction: column;
    gap: 12px;
  }
  .div-info h6 {
    font-size: 14px;
  }

  .div-info p {
    font-size: 12px;
    color: #838383;
  }

  .div-info div {
    background-color: white;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 9px 0px #0000000d;
  }
  .div-info {
    height: 220px;
  }
  .section-examples {
    flex-direction: column;
    gap: 17px;
  }
  .img-infos {
    max-width: 500px;
  }
  .section-examples h3 {
    font-size: 20px;
    text-align: center;
  }
  .section-examples ul li {
    font-size: 14px;
    text-align: center;
  }
  .section-main {
    gap: 50px;
    padding-bottom: 60px;
    padding-top: 60px;
  }
  .section-info {
    padding-bottom: 60px;
  }
  .section-badges {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .section-badges p {
    font-size: 12px;
    padding-top: 16px;
  }
  .section-badges-info {
    flex-direction: column;
    gap: 12px;
  }
  .section-specialty {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .section-specialty article {
    flex-direction: column;
  }
  .section-specialty-buttons {
    gap: 24px;
    width: 280px;
  }
  .section-specialty-buttons button {
    width: 280px;
    padding: 20px 0;
  }
  .footer-section {
    flex-direction: column;
  }
  .footer-items-title {
    text-align: center;
  }
  .footer-items-subtitle {
    text-align: center;
    font-size: 14px;
  }
  .footer-subtitle {
    display: none;
  }
  .footer-section article img {
    width: 100px;
  }
}
