* {
    margin: 0px;
    padding: 0px;
    font-family: "Inter";
}

header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-width: 100%;
    padding: 15px;
}

.banner {
    position: relative;
    width: 100%;
    object-fit: cover;
    max-height: 200px;
    object-position: center;
    border-radius: 17px 17px 0px 0px;
}

.main {
    padding-inline: 1rem;
    display: flex;
    position: relative;
    flex-direction: column;
    gap: 25px;
}

.profile {
    margin-top: -2.5rem;
    display: flex;
    flex-direction: row;
    justify-content: start;
}

.bPhoto {
    width: 88px;
    height: 88px;
    display: flex;
    padding: 2px;
    background-color: white;
    border-radius: 1000px;
    overflow: hidden;
}

.profilePhoto {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1000px;
}

.name {
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.name svg {
    width: 18px;
}

.user .name p {
    font-size: 1.125rem;
    font-weight: bold;
}

.user p {
    font-size: 12px;
}

.user {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: end;
    padding-inline: 15px;
    padding-bottom: 5px;
}

.bio .text {
    color: #374151;
    font-size: 14px;
}

/* #showMore {
    font-size: 12px;
    color: #6b7280;
    border: none;
    background-color: transparent;
} */

.boxbuy {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    height: fit-content;
}

.boxbuy h5 {
    font-size: 14px;
    font-weight: 500;
}

.boxbuy .checkout {
    border: none;
    background-color: #FF8F45;
    border-radius: 10px;
    padding-block: 15px;
    text-decoration: none;
    display: flex;
    color: white;
    font-weight: 600;
    justify-content: center;
}

.boxbuy button {
    border: none;
    background-color: transparent;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.boxbuy p {
    font-size: 12px;
    text-align: center;
    color: #6b7280;
}

.contents {
    gap: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.quantity {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.contents .quantity div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quantity p:first-child {
    font-size: 12px;
    font-weight: bold;
}

.quantity p:last-of-type{
    font-size: 12px;
    font-weight: normal;
}

.contents button {
    border: none;
    background-color: #FF8F45;
    border-radius: 10px;
    padding-block: 10px;
    padding-inline: 20px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    color: white;
    font-weight: 500;
}

.medias {
    display: grid;
    grid-column: 1;
    gap: 15px;
}

.previews {
    margin-top: 20px;
}

#mockup {
    aspect-ratio: 9/16;
    overflow: hidden;
    position: relative;
    border-radius: 15px;
    background-color: black;
}

#moPos {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.previews video, .previews img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    filter: blur(5px);
}

#dropBlock {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3); /* exemplo: preto com 30% de opacidade */
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.blockText {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 7px;
}

.blockText p:first-of-type {
    font-size: 16px;
    font-weight: bold;
    color: white;
}

.blockText p:last-of-type {
    font-size: 12px;
    font-weight: 500;
    color: #fff;
}

.iconBlock {
    display: flex;
    position: relative;
    border-radius: 1000px;
    width: 64px;
    height: 64px;
    padding: 5px;
    justify-content: center;
    background: linear-gradient(to bottom right, #fb923c, #ef4444);
    align-items: center;
}

.iconBlock svg {
    width: 60%;
    height: 60%;
}

.groupBlock {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.bonus-popup {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(to right, #FF8F45, #ef4444);
  color: white;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-size: 13px;
  max-width: 260px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.4s ease-in-out;
  z-index: 9999;
}

.bonus-popup.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.bonus-popup .icon {
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
