#modalFundo {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

#pop {
    width: 500px;
    height: 500px;
    background: #FEFEFE;
    border-radius: 10px;
    padding: 60px;
    position: relative;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    overflow: visible; /* <--- ajustado */
    padding-top: 55px;
}

.pop-title {
    height: auto;
}

.pop-title h1 {
    font-weight: 100;
    font-size: 38px;
    padding: 0%;
}

.pop-bio {
    height: auto;
    margin-top: 0;
    padding: 0%;
}

#fecharBtn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 25px;
    font-weight: 100;
    cursor: pointer;
    border: none;
    background: none;
}

.dropdown, .dropdown2 {
    position: relative;
    width: 160px;
    z-index: 20;
}

.dropdown2{
    margin-left: auto;
}

.dropdown-btn, .dropdown-btn2 {
    display: flex;
    width: 100%;
    padding: 10px 0px;
    font-size: 16px;
    background-color: #FEFEFE;
    border: none;
    border-bottom: 3px solid #000000;
    cursor: pointer;
}

.dropdown-btn span,
.dropdown-btn2 span {
    margin-left: auto;
    font-weight: bolder;
}

.dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    background: white;
    border: 1px solid #ccc;
    display: none;
    z-index: 30; /* <--- mais alto que o botão */
    position: absolute; /* <--- necessário para z-index funcionar */
    top: 100%;
    left: 0;
}

.dropdown-menu li {
    padding: 10px;
    cursor: pointer;
}

.dropdown-menu li:hover {
    background-color: #f0f0f0;
}

.qtn {
    display: flex;
    margin-top: 0px;
}

.options {
    display: flex;
    height: 50px;
    margin-top: 15px;
    padding-bottom: 0;
}

.options p:nth-of-type(2) {
    margin-left: 198px;
}

.options p {
    position: relative;
    top: 16px;
}

.buy {
    position: absolute;
    margin: 70px 0px 0px 0px;
    height: 60px;
    width: 150px;
    color: #f0f0f0;
  
    font-size: 14px;
    cursor: pointer;
    background-color: #2b2a2b;
    z-index: 10; 
}


