:root {
  --background: oklch(24.19% 0.00356 345.096);
  --foreground: oklch(100% 0.00011 271.152);
  --primary: oklch(53.191% 0.21366 27.302);
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  padding: min(100px, 10vw) 0 40px;
}

.container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

header p {
  text-align: center;
  display: block;
  max-width: 400px;
  margin: 0 auto;
}

.header-logo {
  margin: 30px 0 50px;
  text-align: center;
}

.header-logo > img {
  width: 100%;
  max-width: 750px;
}

.types {
  margin-top: 20px;
  display: flex;
  justify-content: space-evenly;
}

.types img {
  max-width: clamp(70px, 20vw, 120px);
}

main {
  border-top: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  padding: 20px 0;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.feature::before {
  content: "";
  background: url(imgs/icone.png) no-repeat center center;
  background-size: contain;
  display: block;
  min-width: clamp(1.75rem, 1.4346rem + 1.8349vw, 2.375rem);
  min-height: clamp(1.75rem, 1.4346rem + 1.8349vw, 2.375rem);
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 250px;
  font-weight: 500;
}

footer {
  margin-top: 20px;
  text-align: center;
}

footer img {
  width: 100%;
  max-width: 300px;
  margin: 40px 0;
}

.infos {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.info,
.info a {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.info i {
  color: var(--primary);
  font-size: 1.5rem;
}

.info a {
  color: var(--foreground);
  text-decoration: none;
  position: relative;
}

.info a::before {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  position: absolute;
  bottom: -4px;
  left: 50%;
  background: var(--primary);
  transition: 0.3s all ease;
  transform: translateX(-50%);
  z-index: -1;
}


.info a:hover::before {
  width: 100%;
}
