@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('drmmerplay.css');
/* reseat */
*{
    border: 0;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
/* root */
:root{
    --grey: rgb(28, 28, 28);
    --grey-2: #343434;
    --grey-p: rgb(167, 169, 190);
    --white: rgb(255, 246, 232);
    --orange: rgb(245, 78, 38);
    --yellow: rgb(250, 191, 41);
    --roxo: rgb(87, 56, 175);
    --red: #ef0638;
    --verde: #0c7354;
    --color-h2-bg: #242424;
    --white-blue: rgb(208, 213, 255);
    --bebas: "Bebas Neue", sans-serif;
    --raleway: "Raleway", sans-serif;
    --border: 2px solid var(--color-h2-bg);
    --radius: 5px;
}
/* global */
body{
    font-family: var(--bebas);
    color: var(--white);
    font-weight: 700;
    background-color: var(--grey);
}
.body-grey-bg{
    position: fixed;
    z-index: -1;
    top: -70px;
    left: -20px;
    max-width: 600px;
}
.body-grey-bg h2{
    font-size: 12em;
    color: var(--color-h2-bg);
}
header, section{
    padding: 20px;
}
h1, h2, h3, p{
    margin-bottom: 10px;
}
h1{
    font-size: 7em;
    max-width: 700px;
    line-height: 1em;
    color: var(--orange);
}
h2{
    font-size: 6em;
}
h1, h2, h3, h4{
    font-family: var(--bebas);
    line-height: 1em;
}
p{
    font-family: var(--raleway);
    font-weight: 300;
    color: var(--grey-p);
}
.orange{
    color: var(--orange);
}
.btn-acao{
    padding: 10px;
    border-radius: var(--radius);
    background: var(--orange);
    font-family: var(--bebas);
    font-weight: 200;
    color: var(--white);
    text-decoration: none;
    font-size: 2em;
    transition: .2s;
}
.btn-acao:hover{
    transform: scale(1.1);
}
/* nav */
nav.menu{
    padding: 10px 20px;
}
.nav-menu-apostila{
    background-color: black;
    border-radius: var(--radius);
    padding: 5px;
}
.nav-menu-apostila a{
    color: var(--orange);
}
.nav-menu-apostila a:hover{
    color: var(--white-blue);
}
.menu-list{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}
nav.menu img{
    max-height: 50px;
    background-color: var(--orange);
    border-radius: 100%;
}
nav.menu .social{
    /* float: right; */
    height: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
}
nav.menu .social a{
    color: var(--grey-p);
    transition: .2s;
}
nav.menu .social a:hover{
    transform: scale(1.5);
}
/* header */
header.cabecalho{
    padding: 50px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* gap: 0px; */
}
header.cabecalho h2{
    font-size: 4em;
}
header.cabecalho p{
    max-width: 600px;
}
/* aulas */
.aula{
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 100px 0;
    /* align-items: center;
    justify-content: center; */
}
.aula h2, .aula-horizontal h2{
    font-family: var(--bebas);
}
.aula h3, .aula-horizontal h3{
    font-size: 3em;
    font-family: var(--bebas);
    color: var(--yellow);
}
.download-btn{
    background-color: var(--orange);
    padding: 10px;
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--white);
    font-family: var(--raleway);
    font-weight: 400;
}
/* player */
.video-container-aulas-gratis {
    position: relative;
    width: 100%;
    max-width: 900px; /* Define a largura máxima do contêiner */
    padding-top: 56.25%; /* Proporção 16:9 */
}

.video-container-aulas-gratis iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius);
    border: var(--border);
}
/* aula cnt */
.aula-cont{
    max-width: 900px;
    padding: 20px;
    background-color: var(--grey-2);
    border-radius: 5px;
}
.aula-cont img{
    width: 100%;
    margin-bottom: 10px;
    border-radius: var(--radius);
    border: var(--border);
}
.img-partitura-curso-virada img{
    background-color: white;
}
.aula-cont-txt{
    max-width: 600px;
}
.aula-cont-txt a{
    text-decoration: none;
    color: var(--white);
    background-color: var(--orange);
    padding: 5px;
    border-radius: var(--radius);
    font-weight: 600;
}
.aula-cont-links{
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 20px;
    align-items: center;
    justify-content: center;
    max-width: 100% !important;
}
.aula-cont-links a{
    font-size: 2em;
    font-weight: 400;
    width: 100%;
}
.aula-horizontal{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 100px;
}
/* aside */
.main-content-aulas-gratis{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: baseline;
}
aside.curso-gratis-cont-lateral{
    max-width: 300px;
    padding: 10px 0 30px;
    border-bottom: 2px solid var(--grey-2);
}
aside.curso-gratis-cont-lateral h3, .cursos-pagos-aside h3{
    font-size: 2em;
}
aside.curso-gratis-cont-lateral p{
    margin-bottom: 20px;
}
aside.curso-gratis-cont-lateral a, .cursos-pagos-aside a{
    padding: 10px;
    background-color: var(--orange);
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-family: var(--raleway);
    border-radius: var(--radius);
}
.aside-container-gratis-pago{
    display: flex;
    flex-direction: column;
}
.aside-container-gratis-pago h3{
    margin-bottom: 10px;
}
.cursos-pagos-aside{
    max-width: 100%;
    padding: 30px 0;
}
.cursos-pagos-aside-txt{
    border-bottom: 2px solid var(--grey-2);
    margin-bottom: 10px;
    padding: 10px 0 30px;
    max-width: 300px;
}
.cursos-pagos-aside h4{
    font-size: 1.5em;
    color: var(--white-blue);
    margin-bottom: 10px;
    font-weight: 400;
}
.cursos-pagos-aside p{
    margin-bottom: 30px;
}
.cursos-pagos-aside a{
    padding: 10px;
    background-color: var(--orange);
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-family: var(--raleway);
    border-radius: var(--radius);
}
.video-container-plyr{
    width: 400px; /*AJUSTAR LARGURA DO PLAYER*/
}
.plyr {
    position: relative;
    max-width: 100%;
    max-width: 100%;
    border-radius: 5px;
    border: var(--border);
}
/* Botões de controle */
.plyr__control {
    background: none;
    color: var(--orange); /* Cor dos ícones dos botões */
}

/* Botões específicos de estado do player */
.plyr--paused .plyr__control--play {
    background-color: #f54e26; /* Cor do botão de play quando o vídeo está pausado */
}

.plyr--playing .plyr__control--play {
    background-color: #f54e26; /* Cor do botão de pause quando o vídeo está em reprodução */
}

/* Barra de controle de volume */
.plyr__volume input[type="range"]::-webkit-slider-thumb {
    background-color: #f54e26; /* Cor do controle deslizante do volume */
}

/* Barra de controle de progresso */
.plyr__progress input[type="range"]::-webkit-slider-thumb {
    background-color: #f54e26; /* Cor do controle deslizante da barra de progresso */
}

/* Ajustes de visibilidade dos controles */
.plyr--full-ui input[type=range]{
    color: var(--orange);
}
/* Main-menu */
.menu-toggle{
    display: none;
    cursor: pointer;
}
.img-menu-icon{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.nav-menu-main{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px 10px;
}
.logo-header img{
    width: 70px;
}
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    align-items: center;
}
li {
    position: relative;
}
nav li a:hover{
    color: var(--orange);
}
nav li a{
    text-decoration: none;
    color: var(--grey-p);
    font-family: var(--raleway);
    font-weight: 600;
}
ul ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 999;
}
li ul li{
    margin-bottom: 10px;
    transition: 1s;
}
li:hover > ul {
    display: block;
    background-color: var(--grey);
    padding: 10px;
}
.social{
    display: none;
}
@media (max-width: 768px){
    .menu-toggle {
        display: block;
        font-size: 2em;
        color: var(--grey-p);
        font-weight: 100;
    }
    .nav-menu-main{
        justify-content: center;
        flex-direction: column;
        background-color: var(--grey);
    }
    nav ul{
        display: none;

    }
    .show{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;        
    }
    .social-show{
        display: flex;
        margin-top: 40px;
        gap: 50px;
    }
    .social-show a{
        color: var(--grey-p);
    }
}
/* footer */
.main-rodape{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: black;
    bottom: 0;
    margin-top: 100px;
    width: 100%;
    padding: 50px 20px 0 20px;
    color: var(--grey-p);
    font-weight: 400;
}
.main-rodape h4{
    color: var(--white);
    font-weight: 400;
}
.main-rodape a{
    text-decoration: none;
    color: var(--grey-p);
}
.footer-categorias{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
}
.footer-categorias li{
    list-style: none;
    margin-top: 10px;
}
.footer-pages{
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
    align-items: baseline;
}
.footer-social{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.footer-social a{
    transition: .2s;
}
.footer-social a:hover{
    transform: scale(1.5);
}
.footer-copy{
    border-top: var(--border);
    width: 100%;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}