/* INICIO DAS NORMALIZAÇÕES */
html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    background: #ffffff !important;
    font-family: "Mulish", sans-serif;
    overflow-x: hidden;
    color: #313131;
}

.overflow-hidden {
    overflow: hidden;
}

img {
    border-style: none;
}

button,
[type="button"],
[type="submit"],
[type="reset"] {
    -webkit-appearance: button;
}

input {
    font-size: 1em;
}

textarea {
    overflow: auto;
    font-size: 1.1em;
}

[hidden] {
    display: none;
}

button,
textarea,
select,
input {
    outline: 0;
}

@media (min-width: 1399px) {
    .containerWidth {
        max-width: 1399px;
        padding: 0;
    }
}

.containerWidth {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

/* FIM DAS NORMALIZAÇÕES */

/* Início CSS */
#header {
    border-bottom: 1px solid #dedede;
}

#header .content {
    display: flex;
    gap: 32px;
    padding: 8px 0;
    justify-content: space-between;
    align-items: center;
}

#header .content .image {}

#header .content .image img {
    width: 230px;
}

#header .content .header {
    display: flex;
    gap: 32px;
    align-items: center;
}

#header .content .header .searchInput {
    color: #ffffff;
    padding: 8px 12px;
    padding-left: 16px;
    border: 1px solid #ff914d;
    border-radius: 10px;
    display: flex;
    gap: 8px;
    max-width: 380px;
    width: 100%;
}

#header .content .header .searchInput input {
    border: none;
    background: transparent;
    color: #313131;
    font-family: "Mulish", sans-serif;
    font-size: 14px;
    width: 100%;
}

#header .content .header .searchInput button {
    border: none;
    background: transparent;
    color: #313131;
    font-size: 18px;
    display: flex;
    cursor: pointer;
    transition: all 0.3s;
}

#header .content .header .searchInput button:hover {
    color: #ff914d;
    transition: all 0.3s;
}

#header .content .header .searchInput button i {}

#header .content .header .menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

#header .content .header .menu .links {
    display: flex;
    list-style: none;
    gap: 32px;
}

#header .content .header .menu .links .link {}

#header .content .header .menu .links .link .anchor {
    text-decoration: none;
    color: #313131;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s;
}

#header .content .header .menu .links .link .anchor:hover {
    color: #ff914d;
    transition: all 0.3s;
}

#header .content .header .login {
    display: flex;
    align-items: center;
    padding: 10px 32px;
    background: #ff914d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 12px;
    gap: 8px;
    text-transform: uppercase;
}

#header .content .header .login:hover {
    background: #000000;
    transition: all 0.3s;
}

#adsMain .content {
    padding: 16px;
    background: #fff6f0;
    border-radius: 16px;
    margin: 32px auto;
    max-width: 996px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
}

#adsMain .content .title {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 32px;
    background: #ff914d;
    color: #ffffff;
}

#adsMain .content .title i {
    font-size: 13px;
}

#adsMain .content .title span {
    font-size: 12px;
}

#adsMain .content .ads {
    display: grid;
    grid-template-columns: repeat(4, 2fr);
    gap: 32px;
}

#adsMain .content .ads .ad {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

#adsMain .content .ads .ad span {
    font-size: 13px;
    font-weight: 600;
    color: #ff914d;
}

#adsMain .content .ads .ad a {}

#adsMain .content .ads .ad a img {
    width: 100%;
    border-radius: 8px;
    height: 132px;
    object-fit: cover;
}

#artists {}

#artists .content {
    padding-bottom: 96px;
    max-width: 1196px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 42px;
}

#artists .content .titles {
    border-bottom: 1px solid #d2d2d2;
    padding: 22px 0;
}

#artists .content .titles span {
    font-size: 32px;
    color: #313131;
}

#artists .content .artists {
    display: grid;
    grid-template-columns: repeat(3, 2fr);
    gap: 48px;
}

#artists .content .artists .artist {
    display: flex;
    gap: 16px;
    align-items: center;
}

#artists .content .artists .artist .image {}

#artists .content .artists .artist .image img {
    height: 130px;
    width: 130px;
    object-fit: cover;
    border-radius: 16px;
}

#artists .content .artists .artist strong a {}

#footer {
    background: #ff914d;
    color: #ffffff;
}

#footer .content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 48px 0;
    gap: 16px;
}

#footer .content a {
    background: #ffffff;
    border-radius: 32px;
    padding: 7px 22px;
    color: #ff914d;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
}

#profile .content {
    display: flex;
    gap: 32px;
    align-items: center;
    padding: 32px 0;
    max-width: 1096px;
    margin: 0 auto;
    border-bottom: 1px solid #dedede;
}

#profile .content .image {}

#profile .content .image img {
    height: 150px;
    width: 150px;
    object-fit: cover;
    border-radius: 100%;
}

#profile .content .infos {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

#profile .content .infos strong {
    font-size: 32px;
}

#profile .content .infos strong a {
    text-decoration: none;
    color: #ff914d;
}

#profile .content .infos p {
    color: #545454;
    line-height: 24px;
}

#cifras .content {
    max-width: 1096px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 32px;
    padding-bottom: 64px;
    flex-direction: column;
}


#cifras .content .titles {}

#cifras .content .titles strong {
    font-size: 28px;
}

#cifras .content .cifras {
    display: grid;
    grid-template-columns: repeat(3, 2fr);
    row-gap: 28px;
    column-gap: 81px;
}

#cifras .content .cifras .cifra {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#cifras .content .cifras .cifra .textos {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#cifras .content .cifras .cifra .textos strong {
    font-size: 16px;
}

#cifras .content .cifras .cifra .textos span {
    font-size: 14px;
}

#cifras .content .cifras .cifra img {
    width: 100%;
}

#cifras .content .cifras a {
    text-decoration: none;
    font-size: 20px;
    color: #313131;
    display: flex;
    gap: 8px;
    align-items: center;
    transition: all 0.3s;
}

#cifras .content .cifras a b {
    font-size: 16px;
    height: 25px;
    width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background: #ff914d;
    color: #ffffff;
}

#cifras .content .cifras a:hover {
    color: #ff914d;
    transition: all 0.3s;
}

#cifraPage {}

#cifraPage .content {
    padding-top: 32px;
        max-width: 1096px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 46px;
}

#cifraPage .content .imgContent img {
    width: 420px;
}

#cifraPage .content .main {
    padding: 32px 0;
    max-width: 1096px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 46px;
}

#cifraPage .content .infos {}

#cifraPage .content .infos a {
    padding: 12px 20px;
    background: #ff914d;
    color: #ffffff;
    border-radius: 12px;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
}

#cifraPage .content .infos a:hover {
    background: #000000;
    transition: all 0.3s;
}

#cifraPage .content .cifra {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

#cifraPage .content .cifra .titulos {}

#cifraPage .content .cifra .titulos strong {
    font-size: 26px;
}

#cifraPage .content .cifra .titulos span {}

#cifraPage .content .cifra p {
    line-height: 30px;
}

.adsSide {
    max-width: 220px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #fff6f0;
    border-radius: 16px;
    align-items: flex-start;
}

.adsSide .title {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 32px;
    background: #ff914d;
    color: #ffffff;
}

.adsSide .title span {
    font-size: 12px;
}

.adsSide .title i {}

.adsSide .ad {}

.adsSide .ad img {
    width: 100%;
}

/* Responsive Header CSS */
#responsive {
    display: none;
}

#responsive .content .image img {
    width: 210px;
}

#responsive .content .responsive {
    display: none;
}

#responsive .content .responsive .searchInput {
    color: #ffffff;
    padding: 8px 12px;
    padding-left: 16px;
    border: 1px solid #ff914d;
    border-radius: 10px;
    display: flex;
    gap: 8px;
    max-width: 380px;
    width: 100%;
}

#responsive .content .responsive .searchInput input {
    border: none;
    background: transparent;
    color: #313131;
    font-family: "Mulish", sans-serif;
    font-size: 14px;
    width: 100%;
}

#responsive .content .responsive .searchInput button {
    border: none;
    background: transparent;
    color: #313131;
    font-size: 18px;
    display: flex;
    cursor: pointer;
    transition: all 0.3s;
}

#responsive .content .responsive label[for="button"] {
    display: none;
    color: #ff914d;
    text-align: center;
    font-size: 28px;
    cursor: pointer;
    height: 40px;
}

#responsive .content .responsive #button {
    display: none;
}

#responsive .content .responsive #responsive-menu {
    display: none;
}

#responsive .content .responsive #responsive-menu label {
    position: absolute;
    right: 0;
    top: 0;
    color: #ffffff;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
}

#responsive .content .responsive #responsive-menu .content-responsive-menu {
    background: #ffffff;
    width: 80%;
    padding: 64px 0px;
    display: flex;
    flex-direction: column;
    gap: 42px;
    position: absolute;
    bottom: 0;
    top: 0;
    align-items: center;
    overflow: auto;
}

#responsive .content .responsive #responsive-menu .content-responsive-menu .imagem {
    padding: 0 26px;
}

#responsive .content .responsive #responsive-menu .content-responsive-menu .imagem img {
    width: 100%;
}

#responsive .content .responsive #responsive-menu .content-responsive-menu .links {
    width: 100%;
}

#responsive .content .responsive #responsive-menu .content-responsive-menu .links details {}

#responsive .content .responsive #responsive-menu .content-responsive-menu .links details[open] summary~* {
    animation: sweep 0.3s ease-in-out;
}

#responsive .content .responsive #responsive-menu .content-responsive-menu .links details summary {
    list-style: none;
    border-bottom: 1px solid #cccccc;
}

#responsive .content .responsive #responsive-menu .content-responsive-menu .links details summary::-webkit-details-marker {
    display: none;
}

#responsive .content .responsive #responsive-menu .content-responsive-menu .links details[open] summary {
    background: #65908f;
}

#responsive .content .responsive #responsive-menu .content-responsive-menu .links details[open] .link {
    color: #ffffff;
}

#responsive .content .responsive #responsive-menu .content-responsive-menu .links details summary .link {
    display: block;
    width: 100%;
    padding: 12px 16px;
    text-decoration: none;
    color: #2f2f2f;
}

#responsive .content .responsive #responsive-menu .content-responsive-menu .links details .sublinks {
    display: flex;
    flex-direction: column;
}

#responsive .content .responsive #responsive-menu .content-responsive-menu .links details .sublinks a {
    border-bottom: 1px solid #ccc;
    padding: 16px;
    text-decoration: none;
    color: #65908f;
    font-size: 14px;
    background: #f6f6f6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#responsive .content .responsive #responsive-menu .content-responsive-menu .infos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

#responsive .content .responsive #responsive-menu .content-responsive-menu .infos a {
    text-decoration: none;
    color: #313131;
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 16px;
    transition: all 0.3s;
}

#responsive .content .responsive #responsive-menu .content-responsive-menu .infos a:hover {
    color: #ff914d;
    transition: all 0.3s;
}

#responsive .content .responsive #responsive-menu .content-responsive-menu .infos a i {
    color: #ff914d;
}

#responsive .content .responsive #responsive-menu .content-responsive-menu .redes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    width: 100%;
}

#responsive .content .responsive #responsive-menu .content-responsive-menu .redes a {
    text-decoration: none;
    color: #ff914d;
    font-size: 22px;
    transition: all 0.3s;
}

#responsive .content .responsive #responsive-menu .content-responsive-menu .redes a:hover {
    color: #000000;
    transition: all 0.3s;
}

#responsive .content .responsive #responsive-menu .content-responsive-menu .login a {
    display: flex;
    align-items: center;
    padding: 10px 32px;
    background: #ff914d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 12px;
    gap: 8px;
    text-transform: uppercase;
    transition: all 0.3s;
}

#responsive .content .responsive #responsive-menu .content-responsive-menu .login a:hover {
    background: #000000;
    transition: all 0.3s;
}

/* Responsive Header CSS */
@media (max-width: 728px) {
    #header {
        display: none;
    }

    #responsive {
        display: block;
    }

    #responsive .content {
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 16px;
        padding-bottom: 32px;
        border-bottom: 1px solid #b2b2b2;
    }

    #responsive .content .menu {
        display: none;
    }

    #responsive .content .responsive-menu {
        display: block;
    }

    #responsive .content .responsive {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    #responsive .content .responsive label[for="button"] {
        display: flex;
        justify-content: center;
    }

    #responsive .content .responsive #button:checked~#responsive-menu {
        left: 0;
        opacity: 100;
        transition: all 0.3s;
        visibility: visible;
    }

    #responsive .content .responsive #responsive-menu {
        visibility: hidden;
        display: flex;
        align-items: flex-start;
        width: 100%;
        position: fixed;
        top: 0;
        bottom: 0;
        z-index: 12;
        opacity: 0;
        left: -200px;
        transition: all 0.3s;
    }

    #responsive .content .responsive #button:checked~.overlay {
        background: #0009;
        visibility: visible;
        opacity: 100;
        z-index: 12;
        transition: all 0.5s;
    }

    #responsive .content .responsive #button:checked~body {
        overflow: hidden;
    }

    #responsive .content .responsive .overlay {
        position: absolute;
        visibility: hidden;
        background: transparent;
        opacity: 0;
        transition: all 0.5s;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2000px;
    }
}

/* Responsive General CSS */
@media (max-width: 768px) {
    #adsMain .content .ads {
        grid-template-columns: repeat(1, 2fr);
    }

    #artists .content .titles span {
        font-size: 26px;
    }

    #artists .content .artists {
        grid-template-columns: repeat(1, 2fr);
    }

    #artists .content .artists .artist .image img {
        height: 80px;
        width: 80px;
    }

    #cifras .content {
        flex-direction: column;
    }

    #cifras .content .main .cifras {
        grid-template-columns: repeat(1, 2fr);
    }

    #cifras .content .main .cifras a {
        font-size: 15px;
    }

    #cifras .content .main .cifras a b {
        font-size: 12px;
        height: 18px;
        width: 18px;
    }

    #profile .content {
        flex-direction: column;
        align-items: flex-start;
        border-bottom: 1px solid #b2b2b2;
    }

    #profile .content .infos p {
        text-align: justify;
        font-size: 14px;
    }

    #profile .content .infos strong a {
        font-size: 20px;
    }

    #cifraPage .content {
        flex-direction: column;
    }

    #cifraPage .content .main {
        flex-direction: column-reverse;
        align-items: flex-start;
    }

    #cifraPage .content .cifra .titulos strong {
        font-size: 18px;
    }

    #cifraPage .content .cifra p {
        line-height: 23px;
        font-size: 14px !important;
    }

    .adsSide {
        max-width: 100%;
    }

    #footer .content {
        flex-direction: column;
        text-align: center;
    }
}