body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  background-color: var(--base-white);
  accent-color: var(--primary-750);
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
}

:root {
  --base-white: #fff;
  --base-black: #000;
  --gray-20: #f5f3ff;
  --gray-50: #f9fafb;
  --gray-200: #eaecf0;
  --gray-350: #c4c4c4;
  --gray-300: #d0d5dd;
  --gray-400: #98a2b3;
  --gray-500: #667085;
  --gray-600: #475467;
  --gray-800: #344054;
  --gray-900: #101828;
  --primary-200: #ddd6fe;
  --primary-250: #9c3ce8;
  --primary-300: #7839ee;
  --primary-400: #5720b7;
  --primary-500: #6c04ce;
  --primary-600: #6723b2;
  --primary-700: #5720b7;
  --primary-750: #491c96;
  --primary-800: #24083f;

  --secondary-500: #00e595;

  --font-dm: "DM Serif Text", serif;
  --font-public: "Public Sans", sans-serif;
  --font-roboto: "Roboto Flex", sans-serif;
  --font-inter: "Inter", sans-serif;

  font-size: 62.5%;
}

fieldset {
  display: block;
  padding-inline: 0;
  border: none;
}

a:hover,
button:hover {
  transition: 0.2s filter;
  filter: brightness(0.9);
}

input {
  color: var(--gray-900);
  background-color: transparent;
  font-family: var(--font-public);
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 2.4rem;
  padding: 0;

  border: none;
  outline: none;
}

input[type="text"],
input[type="email"] {
  height: 4.4rem;
  padding: 1rem 1.4rem;
  border-bottom: 0.2rem solid var(--gray-200);
  width: 90%;
}

::placeholder {
  font-family: var(--font-public);
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 2.4rem;

  color: var(--gray-500);
}

input[type="text"]:focus,
input[type="email"]:focus {
  border-bottom: 0.2rem solid var(--primary-750);
}

select {
  width: 100%;
  border: none;
  font-family: var(--font-public);
  color: var(--gray-500);
  border-bottom: 0.2rem solid var(--gray-200);
  padding: 1rem 1.4rem;
}

.container {
  max-width: 102.4rem;
  margin-inline: auto;
  padding-inline: 2.4rem;
}

/* Header */

header {
  background-image: url("./src/images/lp-maturidade/heading.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--base-white);
  width: 100%;
  padding: 92px 0 144px;
  position: relative;
  z-index: 20;
}

header h1 {
  font-family: var(--font-dm);
  font-weight: 400;
  font-size: 6.6rem;
  margin-block: 3.2rem;
  line-height: 7rem;
  max-width: 80rem;
  width: 100%;
  padding-top: 4.35rem;
}

header p {
  font-family: var(--font-public);
  font-size: 2.4rem;
  line-height: 3.2rem;
  max-width: 80rem;
  width: 100%;
  margin-bottom: 4rem;
}

@media (max-width: 450px) {
  header h1 {
    font-size: 4rem;
    line-height: 1;
  }
}

.primary-button {
  display: block;
  width: fit-content;
  border-radius: 3rem;
  border: 0.1rem solid var(--primary-300);
  background: var(--primary-300);

  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  padding: 1.6rem 3.8rem;

  color: var(--base-white);

  font-family: var(--font-public);
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2rem;
  text-decoration: none;
}

/* Form Section */

.form-section {
  width: 100%;
  margin-top: -10%;
  background-color: #f9fafb;
  display: flex;
  justify-content: end;
}

.form-section-container {
  display: flex;
  grid-template-columns: 0.5fr 0.8fr;
  gap: 0;
  overflow: visible;
  width: 100%;
  position: relative;
}

@media (max-width: 1024px) {
  .form-section-container {
    grid-template-columns: 1fr 1fr;
  }
}

.form-section-content {
  /* padding-left: 2.4rem; */
  padding-top: 100px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .form-section {
    margin-top: -15%;
    width: 90%;
  }
  .form-section-container {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 0.5fr;
    width: 100%;
  }
  .form-section-content {
    /* padding-inline: 2.4rem; */
  }
}

.form-section-image {
  background-image: url("img/Group\ 37465.png");
  background-size: 100%;
  background-repeat: no-repeat;
  z-index: 99;
  overflow: visible;
  background-position: center -90px;
  position: absolute;
  right: 0;
  top: 0;
  height: 1244px;
  width: 990px;
}

.form-section-container h3 {
  font-family: var(--font-dm);
  color: var(--primary-750);
  font-weight: 400;
  font-size: 3.8rem;
  line-height: 4.2rem;
  margin-bottom: 2rem;
  margin-top: 9.2rem;
}

.form-section-container p {
  font-family: var(--font-public);
  color: var(--gray-500);
  font-size: 2rem;
  line-height: 3rem;
}

.form-section-container .grid {
  margin-top: 3.2rem;
  display: grid;
  gap: 3.2rem;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 950px) {
  .form-section-container fieldset {
    grid-column: 1/3;
  }
}

.form-section-container label,
legend {
  color: var(--primary-750);
  font-family: var(--font-public);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.8rem;
  display: block;
}

.form-section-container fieldset.two-columns {
  grid-column: 1/3;
}

.checkbox-container {
  grid-column: 1/3;
}

.checkbox-container > div {
  display: flex;
}

@media (max-width: 950px) {
  .checkbox-container > div {
    display: block;
  }
}

.checkbox-option-container {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.checkbox-option-container > label {
  color: var(--gray-800);
}

.form-button {
  margin-top: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 318px;
  height: 61px;
  border-radius: 3rem;
  background: var(--primary-750);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  color: var(--base-white);
  font-family: var(--font-public);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 2.4rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .form-button {
    padding: 1.8rem;
  }
}

/* About Section */

.about-section {
  padding-top: 19rem;
  background-color: #f9fafb;
}
.about-row {
  display: flex;
  gap: 102px;
}

.about-section .collab-image {
  margin-bottom: 8.6rem;
}

.about-section p {
  color: var(--base-black);
  font-family: var(--font-public);
  font-size: 2rem;
  line-height: 3.2rem;
  margin: 0;
}
.about-row p {
  color: var(--primary-750);
  font-family: var(--font-public);
  font-size: 2rem;
  line-height: 3.2rem;
  font-weight: 600;
}

.about-section h2 {
  color: var(--primary-750);
  font-family: var(--font-dm);
  font-size: 3.8rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.about-image {
  margin-top: 4rem;
  width: 100%;
}

.divider-image {
  display: grid;
  grid-template-columns: 1fr 102.4rem 1fr;
  position: relative;
  padding: 192px 0 128px;
  background-color: #f9fafb;
}

.divider-image .oo-image {
  width: 200px;
  height: auto;
  grid-column: 2;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 22;
  top: 43px;
}
.divider-image .divider-image {
  width: 100%;
  grid-column: 1/3;
  margin: 0;
  padding: 0;
  z-index: 21;
}
/* What Will Find Section */

.timeline-title {
  font-family: var(--font-dm);
  line-height: 4.2rem;
  font-size: 3.8rem;
  font-weight: 400;
  color: var(--primary-800);
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 6rem;
  margin-top: 0;
}
.what-will-find-section {
  background-color: #f9fafb;
  padding-bottom: 111px;
}
.what-will-find-section .timeline-container {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 4rem;
  position: relative;
}

.what-will-find-section .timeline-container::before {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - 148px);
  top: 7rem;
  bottom: 2.1rem;
  border-left: 0.1rem dashed var(--primary-300);
}

.what-will-find-section .timeline {
  position: relative;
  display: flex;
  gap: 2rem;
  margin-left: 3.2rem;
  background: linear-gradient(90deg, #491c96 0%, #7839ee 100%);
  flex-direction: row;
  width: 100%;
  min-height: 152px;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px 0 60px;
  box-sizing: border-box;
  border-radius: 32px;
}

.what-will-find-section .timeline::before {
  content: url("./img/elipse.svg");
  position: absolute;
  display: inline;
  width: 8px;
  height: 8px;
  top: 45%;
  left: -38.3px;
  background-color: var(--base-white);
  border-radius: 50%;
  z-index: 4;
}

.what-will-find-section .timeline span {
  color: var(--base-white);
  background-color: var(--base-white);
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 88px;
  width: 56px;
  padding: 0;
  box-sizing: border-box;
}

.what-will-find-section .timeline p {
  font-family: var(--font-public);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 3.2rem;
  color: var(--base-white);
  margin: 0;
  max-width: 660px;
}

/* For Who Section */

.for-who-section {
  margin-top: 18rem;
}

.for-who-section .timeline-container {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 2rem;
  position: relative;
}

.for-who-section .timeline-container::before {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - 98px);
  top: 5rem;
  bottom: 2.1rem;
  border-left: 0.1rem dashed var(--secondary-500);
}

.for-who-section .timeline::before {
  content: " ";
  position: absolute;
  width: 8px;
  height: 8px;
  top: 50px;
  left: -33.5px;
  background-color: var(--secondary-500);
  border-radius: 50%;
}

.for-who-section .timeline {
  position: relative;
  margin-left: 3rem;
  background-color: var(--secondary-500);
  display: flex;
  flex-direction: row;
  width: 100%;
  min-height: 107px;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px 0 60px;
  box-sizing: border-box;
  border-radius: 32px;
}

.for-who-section .timeline p {
  display: block;
  font-family: var(--font-public);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 3.2rem;
  color: var(--primary-800);
  background-color: var(--secondary-500);
  padding: 0.8rem 2rem;
  border-radius: 1.4rem;
}

.for-who-section .timeline span {
  color: var(--base-white);
  background-color: var(--base-white);
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 88px;
  width: 56px;
  padding: 0;
  box-sizing: border-box;
}

/* Why Access Section */

.why-access-section {
  margin-top: 16rem;
}

.why-access-section .timeline-container {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 8rem;
  position: relative;
}

.why-access-section .timeline-container::before {
  content: "";
  position: absolute;
  width: 100%;
  top: 60px;
  bottom: 60px;
  border-left: 0.1rem dashed var(--primary-300);
}

.why-access-section .timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 2rem;
  margin-left: 3.2rem;
}

.why-access-section .timeline::before {
  content: url("./img/elipse.svg");
  position: absolute;
  display: inline;
  width: 8px;
  height: 8px;
  top: 45%;
  left: -38.3px;

  z-index: 4;
}

.why-access-section .timeline span {
  font-family: var(--font-public);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 3.2rem;
  color: var(--base-white);
  padding: 0.8rem 2rem;
  border-radius: 1.4rem;
}

.why-access-section .timeline p {
  font-family: var(--font-public);
  font-size: 20px;
  font-weight: 400;
  line-height: 3.2rem;
  color: var(--gray-600);
  margin: 0;
  max-width: 520px;
}

/* Get To Know Section */

.get-to-know-section {
  margin-top: 14rem;
  background-image: url("./src/images/lp-maturidade/get-to-know-background.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 14rem;
  color: var(--base-white);
  text-align: left;
  /* height: 100%; */
  padding-bottom: 122px;
}

.get-to-know-section .carrousel .item {
  max-width: 110px;
}

.get-to-know-section h2 {
  font-family: var(--font-dm);
  line-height: 7.6rem;
  font-size: 5.8rem;
  font-weight: 400;
  color: var(--base-white);
}

.get-to-know-section p {
  color: var(--base-white);
  font-family: var(--font-public);
  font-size: 1.8rem;
  line-height: 2.8rem;
}

.white-button {
  margin-top: 4.4rem;
  border-radius: 3rem;
  background: var(--base-white);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  display: flex;
  padding: 1.6rem 3.7rem;
  justify-content: center;
  align-items: center;
  color: var(--primary-250);
  width: fit-content;

  font-family: var(--font-public);
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2.8rem;
  text-decoration: none;
}

.get-to-know-section span {
  display: block;
  margin-top: 10.5rem;
  color: var(--base-white);
  font-weight: 500;
  font-family: var(--font-public);
  line-height: 3rem;
  font-size: 2rem;
}

.get-to-know-section h3 {
  font-family: var(--font-dm);
  font-style: normal;
  font-weight: 400;
  font-size: 3.8rem;
  line-height: 4.2rem;
  letter-spacing: 0.02em;
  color: var(--base-white);
  max-width: 58rem;
}

.get-to-know-section .carrousel-container {
  margin-top: 3.2rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.carrousel-wrapper {
  position: relative;
  overflow-x: hidden;
}

.carrousel-container .carrousel {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  gap: 9.6rem;
}

.carrousel-actions {
  margin-top: 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12rem;
}

@media (max-width: 425px) {
  .carrousel-actions {
    flex-direction: column;
    gap: 4em;
  }
}

.carrousel-actions .actions {
  cursor: pointer;
}

.carrousel-actions a {
  font-family: var(--font-public);
  font-style: normal;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2rem;

  display: flex;
  align-items: center;
  gap: 0.8rem;

  color: var(--base-white);
  text-decoration: none;
}

/* NewsLetter Section */

.newsletter-section {
  background-color: var(--gray-50);
}

.newsletter-container {
  max-width: 118rem;
  padding-inline: 2.4rem;
  margin-inline: auto;
  padding-block: 8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.newsletter-content strong {
  font-family: var(--font-public);
  font-weight: 600;
  font-size: 2rem;
  line-height: 3rem;
  display: flex;
  align-items: center;

  color: var(--gray-600);
}

.newsletter-content span {
  display: block;
  font-family: var(--font-public);
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 2.4rem;

  color: var(--gray-600);
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

@media (max-width: 425px) {
  .newsletter-container {
    flex-direction: column;
    gap: 4rem;
  }

  .newsletter-form {
    flex-direction: column;
  }
}

.newsletter-form input {
  border-bottom: 0.1rem solid var(--gray-600);
}

.newsletter-form button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 1rem 1.8rem;

  background: var(--primary-400);

  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
  border-radius: 3rem;

  font-family: var(--font-public);
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 2.4rem;

  color: #ffffff;

  border: none;
  cursor: pointer;
}

/* Footer */

footer {
  display: grid;
  grid-template-columns: 26px 1fr 26px;
  overflow: hidden;
  background: white;
  font-family: "Public Sans";
}

footer .content {
  grid-column: 2/3;
  padding: 40px 0;
}

.top-footer {
  display: flex;
  flex-direction: column;
  gap: 30px;
  border-bottom: 1px solid var(--gray-300);
  padding-bottom: 10px;
}

.top-footer .logo {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}

.top-footer .logo img {
  width: 100%;
  max-width: 200px;
}

.top-footer .logo span {
  color: var(--gray-600);
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6rem;
}

.top-footer ul {
  list-style: none;
  padding: 0px;
}

.top-footer ul li {
  list-style: none;
  padding: 5px 0;
}

.top-footer nav {
  display: none;
}

.top-footer nav a {
  color: var(--gray-600);
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6rem;
  text-decoration: none;
}

.bottom-footer {
  padding: 5px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.bottom-footer .rights {
  display: flex;
  flex-direction: column;
}

.bottom-footer .rights span {
  color: var(--gray-600);
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4rem;
}

.bottom-footer .social-medias {
  display: flex;
  gap: 10px;
}

.bottom-footer .social-medias a {
  text-decoration: none;
  cursor: pointer;
}

.bottom-footer .social-medias img {
  width: 24px;
}

@media (min-width: 768px) {
  footer {
    grid-template-columns: 1fr 680px 1fr;
  }
  footer .content {
    grid-column: 2/3;
  }
}

@media (min-width: 1024px) {
  footer {
    grid-template-columns: 1fr 980px 1fr;
  }

  .top-footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
  }

  .top-footer nav {
    display: initial;
  }

  .top-footer ul {
    display: flex;
    gap: 57px;
  }

  .top-footer ul li {
    list-style: none;
    padding: 0;
  }

  .top-footer .logo {
    align-items: flex-start;
  }

  .top-footer .logo span {
    font-size: 1.4rem;
    line-height: 2rem;
  }

  .bottom-footer {
    padding: 20px 0;
    flex-direction: row;
    justify-content: space-between;
  }

  .bottom-footer .rights span {
    color: var(--gray-600);
    font-size: 1.2rem;
    line-height: 1.8rem;
  }
}

@media (min-width: 1280px) {
  footer {
    grid-template-columns: 1fr 1000px 1fr;
  }
}

@media (min-width: 1440px) {
  footer {
    grid-template-columns: 1fr 1180px 1fr;
  }
}

.footer-logos {
  display: flex;
  padding-bottom: 10px;
}

.footer-logos img:last-child {
  max-width: 110px;
}

.purple-line {
  height: 0.9rem;
  background: var(--primary-600);
  width: 100%;
}
.why-access-section .timeline-container .timeline {
  display: flex;
  flex-direction: row;
  align-items: center;
  border: 1px solid var(--primary-750);
  border-radius: 32px;
  height: 120px;
  width: 100%;
}
.why-access-section .timeline-container .timeline-left {
  display: flex;
  height: 100%;
  border-radius: 0;
  background: linear-gradient(
    90deg,
    rgba(73, 28, 150, 1) 0%,
    rgba(120, 57, 238, 1) 100%
  );
  min-width: 370px;
  align-items: center;
  padding-left: 16px;
  border-top-left-radius: 31px;
  border-bottom-left-radius: 31px;
}
.why-access-section .timeline-container .timeline-left span {
  max-width: 164px;
  margin-left: 32px;
  font-size: 24px;
  line-height: 28px;
}
.why-access-section .timeline-container .timeline-left .ico-holder {
  color: var(--base-white);
  background-color: var(--base-white);
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 88px;
  width: 56px;
  padding: 0;
  box-sizing: border-box;
}
@media (min-width: 1440px) {
  .form-section-content {
    margin-top: 100px;
  }
  .form-section-image {
    background-size: 100%;
    background-position: right -50px;
  }
}
@media (min-width: 1920px) {
  .form-section-content {
    padding-top: 100px;
    padding-right: 30px;
  }
}
@media (max-width: 1660px) {
  .form-section-image {
    width: 700px;
  }
}
@media (max-width: 1360px) {
  .form-section-image {
    width: 500px;
  }
}
@media (max-width: 950px) {
  .form-section-image {
    display: none;
  }
  .form-section {
    width: 100% !important;
  }
  .form-section-container {
    padding: 0 20px;
  }
  .form-section-container {
    grid-template-rows: unset;
  }
  .about-section {
    padding-top: 10rem;
  }
  .about-row {
    flex-wrap: wrap;
  }
  .about-section .collab-image {
    margin-bottom: 0;
  }
  .about-section h2 {
    margin-top: 60px;
  }
  .divider-image {
    grid-template-columns: 20px 1fr 20px;
  }
  .divider-image .oo-image {
    width: 100px;
    height: auto;
    grid-column: 2;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 22;
    top: 117px;
  }
  .what-will-find-section .timeline,
  .for-who-section .timeline {
    padding: 0 30px 0 30px;
  }
  .what-will-find-section .timeline p,
  .for-who-section .timeline p {
    font-size: 1.5rem;
    line-height: 2.2rem;
  }
  .what-will-find-section .timeline span,
  .for-who-section .timeline span {
    height: 68px;
    min-width: 50px;
  }
  .what-will-find-section .timeline,
  .what-will-find-section .timeline,
  .for-who-section .timeline {
    margin-left: 1.2rem;
  }
  .what-will-find-section .timeline::before {
    left: -21.3px;
  }
  .for-who-section {
    margin-top: 0;
  }
  .for-who-section .timeline::before {
    left: -16.5px;
  }
  .why-access-section .timeline-container .timeline {
    border: none;
    height: unset;
    margin-bottom: 20px;
    flex-direction: column;
  }
  .why-access-section .timeline-container .timeline-left {
    padding-left: 0px;
    min-width: 100%;
    border-radius: 30px;
  }
  .why-access-section .timeline-container .timeline {
    margin-left: 0;
  }
  .why-access-section .timeline p {
    padding-left: 40px;
    font-size: 1.5rem;
    line-height: 2.2rem;
  }
  .get-to-know-section {
    height: unset;
  }
}
