/* Header */
.hd1 {
  padding: 1vh 10vw;
}
.hd1 > a > img {
  width: auto;
}
.hd1 h2 {
  font-size: clamp(1rem, 0.0625rem + 3vw, 1.75rem);
  user-select: none;
}
.hd2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 6vw;
}
.a-yellow {
  padding: 0;
  cursor: pointer;
}
.gear {
  display: flex;
  align-items: center;
}

/* Main */
.md1 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin: 8vh auto 4vh;
  width: 100%;
}
.md1 h2 {
  font-size: clamp(1.25rem, -0.3125rem + 5vw, 2.5rem);
  font-weight: bold;
  color: var(--hard-purple);
  font-family: "League Spartan" !important;
  margin-right: 1vw;
}

.custom-select {
  position: relative;
  display: inline-block;
}

.selected-option {
  width: 200px;
  cursor: pointer;
  padding: 0.5vw 1vw;
  background-color: var(--hard-yellow);
  border-radius: 45px;
  font-size: clamp(1rem, -0.25rem + 4vw, 2rem);
  font-weight: bold;
  color: white;
  text-align: center;
}
.options-list {
  display: none;
  position: absolute;
  left: 1;
  width: 100%;
  background-color: var(--yellow);
  color: #fff;
  font-size: clamp(0.875rem, -0.2188rem + 3.5vw, 1.75rem);
  font-weight: bold;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
}

.custom-select.open .options-list {
  display: block;
  border-bottom-left-radius: 31px;
  border-bottom-right-radius: 31px;
}
.custom-select.open .selected-option {
  border-radius: 31px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.option {
  padding: 0.5vw 1vw;
  cursor: pointer;
  text-align: center;
}
.option:hover,
.op3:hover {
  background-color: var(--hard-yellow);
}
.op3:hover {
  border-bottom-left-radius: 31px;
  border-bottom-right-radius: 31px;
}
.options-list {
  display: none;
}

.section1 {
  width: 85%;
  margin: auto;
  overflow: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.carrousel {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  position: relative;
  overflow-x: auto;
  user-select: none;
}

.slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  transform: scale(0.85);
  cursor: pointer;
}
.slide:hover {
  transform: scale(0.95);
  transition: all 0.36s;
  box-shadow: 0px 0px 5px 0px #000;
  border-top-left-radius: 48px;
  border-top-right-radius: 48px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}
.slide:hover .ccdesc {
  box-shadow: none;
  transition: all 0.36s;
}

.ccimg {
  background-color: #ffd593;
  min-width: 200px;
  width: 25vw;
  border-top-left-radius: 45px;
  border-top-right-radius: 45px;
  padding: 1vh 3vw 0;
}
.ccimg img {
  width: 90%;
}

.ccdesc {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  background-color: #fdfdfd;
  box-shadow: 0px 13px 1px hsla(0, 0%, 85%, 0.432);
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  min-width: 200px;
  width: 25vw;
  min-height: 8vh;
}
.ccdesc a {
  font-family: "League Spartan" !important;
  font-size: clamp(1.5rem, 0.25rem + 4vw, 2.5rem);
  font-weight: 900;
  color: var(--hard-purple);
  margin-block: 0;
  text-decoration: none;
}
.ccdesc img {
  position: relative;
  bottom: 4vh;
  width: 25%;
  margin: 0 0 -1vh;
}

.md3 {
  width: 18.32011%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 8vh auto 0;
}
.a-purple {
  font-family: "League Spartan" !important;
}

@media screen and (max-width: 1080px) {
  .a-perfil {
    height: 6vh;
  }
  .span-perfil {
    display: none;
  }
  .md1 {
    margin: 4vh auto 2vh;
  }
  .ccdesc a {
    font-size: clamp(1.5rem, 0.875rem + 2vw, 2rem);
  }
  .ccdesc img {
    bottom: 2vh;
    margin: 0 0 -1vh;
    width: 20%;
  }
  .md3 {
    width: 30%;
  }
}

@media screen and (pointer: none),
  (pointer: coarse) and (orientation: portrait) and (max-width: 768px) {
  .a-perfil {
    height: 4.5vh;
  }
  .selected-option {
    width: 40vw;
  }
  .ccdesc {
    box-shadow: 0px 8px 1px hsla(0, 0%, 85%, 0.432);
  }
  .md3 {
    width: 40%;
  }
}
