@import url("https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@500;700;800&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  vertical-align: baseline;
}

*::before,
*::after {
  display: block;
}

img,
picture,
video,
iframe,
figure {
  max-width: 100%;
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

a {
  display: block;
  text-decoration: none;
  color: inherit;
  font-size: inherit;
}

p a {
  display: inline;
}

li {
  list-style-type: none;
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6,
span,
a,
strong,
blockquote,
i,
b,
u,
em {
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  text-decoration: none;
  color: inherit;
}

p {
  font-size: 18px;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

::selection {
  background-color: var(--negro);
  color: var(--blanco);
}

form,
input,
textarea,
select,
button,
label {
  font-family: inherit;
  font-size: inherit;
  hyphens: auto;
  background-color: transparent;
  color: inherit;
  display: block;
  appearance: none;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
}

table,
tr,
td {
  border-collapse: collapse;
  border-spacing: 0;
}

svg {
  width: 100%;
  display: block;
  fill: currentColor;
}

body {
  min-height: 100vh;
  font-size: 100%;
  font-family: "Hanken Grotesk", sans-serif;
  color: var(--negro);
  hyphens: auto;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
}

.main {
  width: 100%;
  min-height: 100vh;
  display: grid;
  place-content: center;
}
@media screen and (max-width: 480px) {
  .main {
    display: block;
  }
}
.main__card {
  width: 53rem;
  height: 37rem;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  border-radius: 2.5rem;
  -webkit-border-radius: 2.5rem;
  -moz-border-radius: 2.5rem;
  -ms-border-radius: 2.5rem;
  -o-border-radius: 2.5rem;
  box-shadow: 0.3rem 0.3rem 0.6rem hsla(241deg, 100%, 89%, 0.85);
}
@media screen and (max-width: 480px) {
  .main__card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.card__title {
  font-size: 1.8em;
}
.card__title--hidden {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
}

.card__wrapper {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-block: 2.8rem;
  gap: 2.5rem;
}
.card__wrapper--result {
  flex: 50%;
  background-image: linear-gradient(hsl(252deg, 100%, 67%), hsl(241deg, 81%, 54%));
  border-radius: 2.5rem 2.5rem 2.5rem 2.5rem;
  -webkit-border-radius: 2.5rem 2.5rem 2.5rem 2.5rem;
  -moz-border-radius: 2.5rem 2.5rem 2.5rem 2.5rem;
  -ms-border-radius: 2.5rem 2.5rem 2.5rem 2.5rem;
  -o-border-radius: 2.5rem 2.5rem 2.5rem 2.5rem;
}
@media screen and (max-width: 480px) {
  .card__wrapper--result {
    border-radius: 0 0 2.5rem 2.5rem;
    -webkit-border-radius: 0 0 2.5rem 2.5rem;
    -moz-border-radius: 0 0 2.5rem 2.5rem;
    -ms-border-radius: 0 0 2.5rem 2.5rem;
    -o-border-radius: 0 0 2.5rem 2.5rem;
  }
}
.card__wrapper--summary {
  flex: 45%;
  align-items: flex-start;
  padding-right: 3rem;
}
@media screen and (max-width: 480px) {
  .card__wrapper--summary {
    padding: 2rem;
  }
}
.card__title--resultHeading {
  color: hsla(222deg, 100%, 96%, 0.68);
}
.card__title--resultSummary {
  font-weight: 800;
  color: hsl(224deg, 30%, 27%);
}
.card__content {
  width: 70%;
  text-align: center;
}
.card__subtitle {
  color: hsl(0deg, 0%, 100%);
  font-size: 2.15em;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}
.card__descriptionResult {
  color: hsla(241deg, 100%, 89%, 0.85);
  line-height: 1.33;
}

.card__circle {
  width: 14rem;
  height: 14rem;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-image: linear-gradient(180deg, hsl(256deg, 72%, 46%), hsla(241deg, 72%, 46%, 0));
}
.card__score {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.card__scoredReached {
  font-size: 5.3em;
  font-weight: 800;
  color: hsl(0deg, 0%, 100%);
}
.card__maxScore {
  color: hsla(241deg, 100%, 89%, 0.85);
  font-size: 1.25em;
}

.card__scoredList {
  width: 100%;
}
.card__categorie {
  height: 4rem;
  margin-bottom: 1rem;
  padding: 1.25rem;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
}
.card__categorie--reaction {
  color: hsl(0deg, 55%, 50%);
  background-color: #fcf3f3;
}
.card__categorie--memory {
  color: hsl(39deg, 100%, 56%);
  background-color: #fffaf2;
}
.card__categorie--verbal {
  color: hsl(166deg, 100%, 37%);
  background-color: #f0fbf8;
}
.card__categorie--visual {
  color: hsl(234deg, 85%, 45%);
  background-color: #f1f2fc;
}
.card__categorieContent {
  line-height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card__categorieName {
  font-size: 1.33em;
  font-weight: 500;
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
}
.card__categorieName--reaction::before {
  content: url("../images/icon-reaction.svg");
  display: inline-block;
}
.card__categorieName--memory::before {
  content: url("../images/icon-memory.svg");
  display: inline-block;
}
.card__categorieName--verbal::before {
  content: url("../images/icon-verbal.svg");
  display: inline-block;
}
.card__categorieName--visual::before {
  content: url("../images/icon-visual.svg");
  display: inline-block;
}
.card__categoriePoints {
  font-size: 1.22em;
  font-weight: 800;
  color: #000;
}
.card__categoriePoints::after {
  content: " / 100";
  display: inline;
  color: hsla(241deg, 100%, 89%, 0.85);
}

.card__btn {
  width: 100%;
  padding-block: 1.2rem;
  color: hsl(0deg, 0%, 100%);
  font-size: 1.23em;
  font-weight: 500;
  background-color: hsl(224deg, 30%, 27%);
  border-radius: 2rem;
  -webkit-border-radius: 2rem;
  -moz-border-radius: 2rem;
  -ms-border-radius: 2rem;
  -o-border-radius: 2rem;
}
.card__btn:hover {
  background-image: linear-gradient(hsl(252deg, 100%, 67%), hsl(241deg, 81%, 54%));
  cursor: pointer;
}

/* Reset */
/* Layout */
/* Components */

/*# sourceMappingURL=main.css.map */
