/*
    Paleta de Cores
    #0d0d0d
    #8c7916
    #bfa41f
    #f2d027
    #f2f2f2

*/
/*
    Importação de fontes.
    font-family: 'Montserrat', sans-serif;
*/
.mestres-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #8C7916;
    color: #ffffff;
}
.nm-card-area{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    /*max-width: 1000px;*/
    width: 100%;
    max-height: 750px;
    overflow-x: scroll;
}

.nm-card-area::-webkit-scrollbar {
    width: 10px;/* width of the entire scrollbar */
    
}
  
.nm-card-area::-webkit-scrollbar-track {
    background: #f2d027; /* color of the tracking area */
    border-radius: 10px;
}
  
.nm-card-area::-webkit-scrollbar-thumb {
    background-color: #0d0d0d;/* color of the scroll thumb */
    border-radius: 10px;/* roundness of the scroll thumb */
    border: none;/* creates padding around scroll thumb */
}

.nm-title{
    font-family: 'Montserrat', 'sans-serif';
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
}
.nm-card-content{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: start;
    gap: 30px;
    scroll-behavior: smooth;
    
}

.nm-card{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.nm-link{
    text-decoration: none;
    color: #ffffff;
}
.nm-link:hover{
    color: #f2d027;
    transition: all 400ms;
}
.nm-txt{
    max-width: 150px;
    text-align: center;
}
.nm-img-thumb-area{
    width: 150px;
    height: 150px;
    border-radius: 100px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #bdc3c7;
    color: #ffffff;
}
.semthumb {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.nm-img-thumb{
    width: 150px;
    height: 150px;
    border-radius: 100px;
    object-fit: cover;
    pointer-events: none;
}

.nm-img-thumb:hover{
    transform: scale(1.2);
    transition: all 400ms;
}


.sp-content{
    overflow-y: scroll;
}

.sp-body-content{
    margin-top: 25px;
    margin-bottom: 50px;
}

.sp-title{
    font-weight: 700;
    font-size: 32px;
    text-align: center;
}
.sp-img-thumb{
    max-width: 500px;
    max-height: 500px;
    width: 100%;
    height: 100%;
    pointer-events: none;
}


/* Botão Voltar */

.voltar{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    font-weight: 500;
}
.voltar a{
    text-decoration: none;
    background-color: #8C7916;
    color: #ffffff;
    width: 100px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.voltar a:hover{
    background-color: #f2d027;
    color: #0d0d0d;
    transition: all 400ms;
}
