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

:root {
  --white: #ffffff;
  --dark: #000000;

  --purple: #5717cc;

  --orange: linear-gradient(180deg, #fe5a00 0%, #ff7900 100%);
  --orange-hover: linear-gradient(180deg, #fe9659 0%, #fe9659 100%);
  --pink: linear-gradient(270deg, #b5257a 0%, #ff0a9a 100%);
  --pink-hover: linear-gradient(270deg, #fd48b3 0%, #fd48b3 100%);

  --gray-100: #fbf9f5;
  --gray-500: #2c2929;
  --gray-900: #282828;
}

.wrapper {
  max-width: 95rem;
  margin: 0 auto;
}

body {
  background-color: var(--gray-100);
  color: var(--gray-500);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 0;
}

h1 {
  font-weight: 700;
  font-size: 3.375rem;
  line-height: normal;
}

h2 {
  font-weight: 700;
  font-size: 2.75rem;
  line-height: normal;
}

h3 {
  font-weight: 700;
  font-size: 2rem;
  line-height: normal;
}

h4,
p {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: normal;
}

h5 {
  font-weight: 400;
  font-size: 1rem;
  line-height: normal;
}

ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

hr {
  background-color: #000;
  opacity: 0.1;
}

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

.button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0.625rem 1.25rem;
  border: 0;
  border-radius: 50px;
  color: var(--white);

  width: 14.75rem;
  height: 3.375rem;

  background: transparent;

  transition: all 0.5s ease;

  &:hover {
    color: var(--white);
  }
}

.button_lg {
  width: 23rem;
  height: 4.5rem;
}

.button_icon {
  gap: 10px;

  &:hover {
    gap: 50px;
    color: var(--white);
  }
}

.button_outline {
  border: 1px solid;
}

.button_primary {
  background: var(--orange);

  &:hover {
    background: var(--orange-hover);
  }
}

.button_secondary {
  background: var(--pink);

  &:hover {
    background: var(--pink-hover);
  }
}

.button_tertiary {
  color: var(--purple);
  border-color: var(--purple);

  &:hover {
    color: var(--white);
    background-color: var(--purple);
  }
}

.button_white {
  background: var(--gray-100);
  color: #ff7900;

  &:hover {
    background: var(--orange);
    color: var(--gray-100);
  }
}

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

/* MEDIAS (BOOTSTRAP 5) */
@media (max-width: 1400px) {
  .wrapper {
    max-width: 82.5rem; /* 1320px */
  }
}

@media (max-width: 1200px) {
  .wrapper {
    max-width: 71.25rem; /* 1140px */
  }
}

@media (max-width: 992px) {
  .wrapper {
    max-width: 60rem; /* 960px */
  }
}

@media (max-width: 768px) {
  .wrapper {
    max-width: 45rem; /* 720px */
  }

  h1 {
    font-size: 2rem;
  }

  p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .wrapper {
    max-width: 33.75rem; /* 540px */
  }
}
