@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Libre+Bodoni:ital,wght@0,400..700;1,400..700&display=swap');
:root {
  --backHero: #f2ebde;
  --background: #f5f0e3;
  --black: #1E1E1E;
  --white: #fff;
  --accent: #F7BE00;
  --inter: "Inter", sans-serif;
  --libre: "Libre Bodoni", serif;
  
    /* colors */
  --tx9-color-primary-hsl: 250, 84%, 54%;
  --tx9-color-contrast-low-hsl: 240, 4%, 65%;
  --tx9-color-contrast-high-hsl: 230, 7%, 23%;
  --tx9-color-contrast-higher-hsl: 230, 13%, 9%;
  --tx9-color-bg-hsl: 0, 0%, 100%;

  /* spacing */
  --tx9-space-xs: 0.5rem;
  --tx9-space-sm: 0.75rem;
  --tx9-space-md: 1.25rem;
  --tx9-space-xl: 3.25rem;

  /* typography */
  --tx9-text-xs: 0.694rem;
  --tx9-text-sm: 0.833rem;
}
*,
*::after,
*::before {
  box-sizing: border-box;
}

* {
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  background-color: hsl(0, 0%, 100%);
  font-family: system-ui, sans-serif;
  color: hsl(230, 7%, 23%);
  font-size: 1rem;
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
  color: hsl(230, 13%, 9%);
  font-weight: 700;
  font-family: var(--inter);
}
h1 {
  font-size: 2.0736rem;
}

h2 {
  font-size: 1.728rem;
  font-weight: 500;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.2rem;
}
p {
  font-family; var(--inter);
}
ol,
ul,
menu {
  list-style: none;
  font-family; var(--inter);
}

button,
input,
textarea,
select {
  background-color: transparent;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  appearance: none;
  font-family; var(--inter);
}

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

a {
  color: hsl(250, 84%, 54%);
  font-family; var(--inter);
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-family; var(--inter);
}

img,
video,
svg {
  display: block;
  max-width: 100%;
}

@media (min-width: 64rem) {
  body {
    font-size: 1.25rem;
  }

  h1 {
    font-size: 3.051rem;
  }

  h2 {
    font-size: 2.44rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  h4 {
    font-size: 1.5625rem;
  }
}

@media (min-width: 64rem) {
  :root {
    /* spacing */
    --tx9-space-xs: 0.75rem;
    --tx9-space-sm: 1.125rem;
    --tx9-space-md: 2rem;
    --tx9-space-xl: 5.125rem;

    /* typography */
    --tx9-text-xs: 0.8rem;
    --tx9-text-sm: 1rem;
  }
}
header {
  background-color: var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}
.header__logo--udem {
  max-width: 130px;
}
.header__logo--fil {
  max-width: 250px;
}
section {
  background-color: var(--background);
} 
.container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
.container:not(.hero .container) {
  padding: 5rem 1rem;
}
.container__title {
  font-family: var(--inter);
  margin-bottom: 2.5rem;
  text-align: center;
}
.container__subtitle {
  font-family: var(--inter);
  text-align: center;
}
.container__title span {
  font-style: italic;
}
.hero {
  background-color: var(--backHero);
  padding-bottom: 3rem;
}
.hero__img {
  width: 50%;
  margin: 0 auto;
}
.hero p {
  padding-bottom: 0.75rem;
  max-width: 80%;
  margin: 0 auto;
  text-align: center;
}
.dl-v2__title {
  font-family: var(--libre);
  font-style: italic;
}
.dl-v2__item {
  border-color: var(--accent) !important;
}
.tab-features__control[aria-selected="true"]::after {
  background-color: #FE3B1F !important;
}
.dl-v2__description button {
    background-color: #FE3B1F;
    padding: 0.5rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.2rem;
    color: var(--white);
    font-family: var(--libre);
    font-style: italic;
    margin-top: 1rem;
}
.dl-v2__description button:hover {
  cursor: pointer;
}
footer {
  background-color: var(--black);
  color: var(--white);
}
footer .container {
  padding: 2rem 0 !important;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  font-family: var(--inter);
}
.copyright {
  color: rgba(255, 255, 255, 0.7);
}
.legal {
  color: var(--white);
}
@media screen and (max-width: 767px) {
  .header__logo--udem {
    max-width: 120px;
  }
  .header__logo--fil {
    max-width: 180px;
  }
  .hero__img {
    width: 100%;
  }
  .list-v3 {
    width: 100%;
  }
  footer .container {
    flex-direction: column;
    gap: 1rem;
  }
}