@import url('https://fonts.googleapis.com/css2?family=Readex+Pro:wght@500&display=swap');

* {
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Readex Pro', sans-serif;
    background-color: #ece7e1;
}

.nav {
    color: #FAF6FE;
    width: 100%;
    height: 50px;
    background-color: #4d42c06b;
    display: flex;
    position: fixed;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0px;
    box-shadow: 0px 1px 8px #2121216e;
}

.nav h1 {
    font-size: 24px;
    font-family: 'Readex Pro', sans-serif;
    font-weight: 400;
}

.nav a {
    text-decoration: none;
    color: #FAF6FE;
}

.nav .logo {
    display: flex;
    align-items: center;
    color: #FAF6FE;
    font-size: 24px;
    gap: 10px;
    cursor: pointer;
    margin-left: 250px;
}

.nav .logo img {
    width: 60px;
}

.nav ul {
    display: flex;
    flex-direction: row;
    list-style: none;
    gap: 32px;
    justify-content: flex-end;
    align-items: center;
    margin-right: 250px;
    color: #FAF6FE;
}

.nav ul a {
    text-decoration: none;
    color: #FAF6FE;
}

.nav ul li {
    cursor: pointer;
}

.nav ul li h2 {
    font-size: 18px;
    font-weight: 400;
}

.sec1 {
    width: 100%;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
}

.sec1 .product {
    display: flex;
    justify-content: center;
    /* align-items: center; */
    width: 100%;
    gap: 20px;
}

.sec1 .product>.img {
    background-color: #2121210c;
    width: 700px;
    aspect-ratio: 1/1;
    border-radius: 5px;
    /* margin-left: 350px; */

    background-image: url("../imgs/sticker8.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 650px;
}

.sec1 .product .details {
    display: flex;
    flex-direction: column;
    gap: 50px;
    /* margin-right: 350px; */
}

.sec1 .product .details .title {}

.sec1 .product .details .title h2 {
    color: #4C42C0;
    font-size: 42px;
}

.sec1 .product .details .title p {
    color: #212121;
}

.sec1 .product .details .elos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    text-align: center;
}

.sec1 .product .details .elos .eloAtual,
.sec1 .product .details .elos .eloDesejado {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.sec1 .product .details .elos .eloAtual>div,
.sec1 .product .details .elos .eloDesejado>div {
    display: grid;
    gap: 10px;
}

.sec1 .product .details .elos .eloAtual img,
.sec1 .product .details .elos .eloDesejado img {
    width: 150px;
}

.sec1 .product .details .elos .eloAtual span {}

.sec1 .product .details .elos .eloAtual .elos1 select,
.sec1 .product .details .elos .eloDesejado .elos2 select {
    font-family: 'Readex Pro', sans-serif;
    font-size: 20px;
    font-weight: 500;
    border: 1px solid #212121;
    border-radius: 5px;
    padding: 5px;
    background-color: #4C42C0;
    color: #FAF6FE;

    cursor: pointer;
}

.sec1 .product .details .adicionais {}

.sec1 .product .details .adicionais h4 {
    color: #4C42C0;
    font-size: 24px;
    font-weight: 100;
}

.sec1 .product .details .adicionais .items {}

.sec1 .product .details .adicionais .items ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
}

.sec1 .product .details .adicionais .items li {
    text-align: center;
    list-style: none;
    text-wrap: nowrap;
    color: #212121;

    background-color: #d4d4d4;
    padding: 10px;
    border-radius: 5px;

    /* cursor: pointer; */
}

.sec1 .product .details .btn-addInfo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    gap: 20px;
    align-items: center;
}

.sec1 .product .details .btn-addInfo button {
    border: none;
    border-radius: 5px;
    background-color: #EBBC72;
    height: 100px;

    cursor: pointer;
}

.sec1 .product .details .btn-addInfo button>span {
    font-size: 24px;
    font-family: 'Readex Pro', sans-serif;
    color: #4C42C0;
}

.sec1 .product .details .btn-addInfo .addInfo {}

.sec1 .product .details .btn-addInfo .addInfo ul {
    display: grid;
    /* grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr); */
    color: #212121;
    gap: 5px 20px;
    list-style: none;
    text-wrap: nowrap;
    font-size: 12px;
}