/* --- Anchors --- */
.a-yellow,
.a-purple,
.a-border-yellow,
.a-btn-yellow,
.a-yellow-2 {
  text-decoration: none;
  text-align: center;
  font-weight: 900;
}

.a-yellow {
  color: var(--hard-yellow);
  font-weight: 900;
  font-size: clamp(0.75rem, 0.125rem + 2vw, 1.25rem);
  padding: 1vh 0 0;
}
.a-yellow:hover {
  transform: scale(1.06);
  transition: all 0.35s;
  color: var(--light-blue);
}

.a-purple {
  background-color: var(--hard-purple);
  border-radius: 40px;
  font-size: clamp(0.75rem, -0.5rem + 4vw, 1.75rem);
  padding: clamp(8px, 2vw, 20px);
  color: #fff;
  font-weight: 900;
  width: clamp(150px, 100%, 100%);
}
.a-purple:hover {
  transform: scale(1.06);
  transition: all 0.35s;
  background-color: var(--dark-purple);
}

.a-border-yellow {
  width: clamp(150px, 100%, 100%);
  padding: clamp(6px, 2vw, 20px) 0;
  border: 4px solid var(--light-yellow);
  color: var(--hard-yellow);
  border-radius: 40px;
  font-size: clamp(0.75rem, -0.5rem + 4vw, 1.75rem);
}
.a-border-yellow:hover {
  transform: scale(1.06);
  transition: all 0.35s;
  border-color: var(--yellow);
}

.a-btn-yellow {
  padding: 6px clamp(12px, 4vw, 30px);
  border: 4px solid var(--light-yellow);
  color: var(--hard-yellow);
  font-weight: 900;
  border-radius: 80px;
  font-size: clamp(1rem, 0.375rem + 2vw, 1.5rem);
  background-color: transparent;
  cursor: pointer;
}
.a-btn-yellow:hover {
  transform: scale(1.06);
  transition: all 0.35s;
  border-color: var(--yellow);
}

.a-yellow-2 {
  background-color: var(--yellow);
  border-radius: 40px;
  font-size: clamp(0.75rem, -0.5rem + 4vw, 1.75rem);
  padding: clamp(8px, 2vw, 20px);
  color: #fff;
  font-weight: 900;
  width: clamp(150px, 100%, 100%);
}
.a-yellow-2:hover {
  transform: scale(1.06);
  transition: all 0.35s;
  background-color: var(--hard-yellow);
}

.a-perfil {
  display: flex;
  align-items: center;
  flex-direction: row;
  background-color: var(--hard-purple);
  border-radius: 80px;
  color: #fff;
  text-decoration: none;
  width: fit-content;
  height: 8vh;
  border: 2px solid var(--hard-purple);
}
.a-perfil:hover {
  background-color: var(--dark-purple);
  border-color: var(--dark-purple);
  transition: all 0.35s;
}
.a-perfil img {
  height: 100%;
  width: auto;
}
.a-perfil:hover > img {
  opacity: 0.75;
  transition: all 0.35s;
}
.a-perfil h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 3.5rem 0 3rem;
  font-size: clamp(0.75rem, -1.2813rem + 6.5vw, 2.375rem);
  font-weight: bold;
  margin-block: 0;
  line-height: 0.75;
  font-family: "League Spartan" !important;
  text-overflow: ellipsis;
}
.a-perfil:hover > h2 {
  color: var(--light-gray);
}

/* --- Buttons --- */
.right {
  background: #27c834;
  border-radius: 20px;
  font-size: clamp(1rem, -0.25rem + 4vw, 2rem);
  padding: clamp(6px, 2vw, 12px) clamp(12px, 4vw, 30px);
  color: #fff;
  border: none;
  width: 110%;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.wrong {
  background: #fc6886;
  border-radius: 20px;
  font-size: clamp(1rem, -0.25rem + 4vw, 2rem);
  padding: clamp(6px, 2vw, 12px) clamp(12px, 4vw, 30px);
  color: #fff;
  border: none;
  width: 110%;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.btn-purple {
  background-color: var(--hard-purple);
  border-radius: 20px;
  font-size: clamp(1rem, -0.25rem + 4vw, 2rem);
  padding: clamp(6px, 2vw, 12px) clamp(12px, 4vw, 30px);
  color: #fff;
  border: none;
  width: 100%;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}
.btn-purple:hover {
  transform: scale(1.06);
  transition: all 0.35s;
  background-color: var(--dark-purple);
  cursor: pointer;
}

.btn-red {
  background-color: #ff2a2a;
  border-radius: 40px;
  font-size: clamp(1rem, -0.25rem + 4vw, 2rem);
  padding: clamp(6px, 2vw, 12px) clamp(12px, 4vw, 30px);
  color: #fff;
  border: none;
  width: 50%;
  font-weight: 700;
}
.btn-red:hover {
  transform: scale(1.06);
  transition: all 0.35s;
  background-color: #bf2020;
  cursor: pointer;
}

/* --- Icons --- */
.icon-close {
  font-size: clamp(1rem, -0.25rem + 4vw, 2rem);
  color: var(--medium-gray);
}
.icon-close:hover {
  transform: scale(1.06);
  transition: all 0.35s;
  color: var(--dark-gray);
}
.icon-gear {
  text-decoration: none;
  color: var(--hard-purple);
  font-size: clamp(1rem, -1.5rem + 8vw, 3rem);
  font-weight: bolder;
}
.icon-gear:hover {
  color: var(--dark-purple);
  transform: scale(1.1);
  transition: all 0.35s;
}

/* --- Spans --- */
.span-perfil {
  font-size: clamp(0.625rem, -0.4688rem + 3.5vw, 1.5rem);
  font-weight: 300;
}

.span-purple {
  color: var(--hard-purple);
}
.span-yellow {
  color: var(--hard-yellow);
}

/* Media Query para Celulares/Paisagem até Laptops */
@media screen and (max-width: 1024px) {
  .a-perfil {
    height: 6vh;
  }
  .a-perfil h2 {
    padding: 0 2.5rem 0 2rem;
    font-size: clamp(0.75rem, 0.125rem + 2vw, 1.25rem);
  }
  .span-perfil {
    font-size: clamp(0.625rem, 0.1563rem + 1.5vw, 1rem);
  }
}

/* Media Query para Celulares/Retrato */
@media screen and (pointer: none),
  (pointer: coarse) and (orientation: portrait) and (max-width: 768px) {
  .a-purple,
  .a-border-yellow,
  .a-yellow-2 {
    font-size: clamp(1rem, -0.25rem + 4vw, 2rem);
    padding: clamp(6px, 1.5vw, 16px) 0;
  }
  .a-perfil {
    height: 3vh;
  }
  .a-perfil h2 {
    padding: 0 1.5rem 0 1rem;
  }
}
