* {
    font-family: "Roboto", "Arial", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-smooth: antialiased;
    -webkit-font-smoothing: antialiased;
    list-style: none;
    outline: none;
}

:root {
    --primary-color: #f03f03;
    --secondary-color: #f5f5f5;
    --text-color: #333;
    --border-color: #e0e0e0;
}

label.error {
    color: red;
    font-size: 14px;
    padding: 3px 0 0 3px;
}

input.error,
select.error,
textarea.error {
    border: 1px solid red !important;
}

.alert {
    padding: 12px 20px;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 500;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

img {
    max-width: 100%;
}

.center {
    width: 1290px;
    margin: 0 auto;
    max-width: 99%;
}

#topo {
    width: 100%;
    padding: 10px 20px;
    background: #fff;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
}

#topo .logo {
    flex: 0 0 50px;
}

#topo img {
    width: 50px;
}

.dropdown {
    display: none;
}

#login-minha-conta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 200px;
    flex: 0 0 200px;
}

#login-minha-conta a {
    text-decoration: none;
    border: 2px solid var(--primary-color);
    padding: 10px;
    border-radius: 8px;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

#login-minha-conta a:hover {
    background: var(--primary-color);
    color: #fff;
}

#login-minha-conta a:last-child {
    background: var(--primary-color);
    color: #fff;
}

#menu {
    width: 100px;
    flex: 0 0 100px;
}

#menu ul li {
}

#menu ul li span {
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 0;
    color: var(--text-color);
    cursor: pointer;
    height: 51px;
}

#menu ul li:hover .dropdown {
    display: block;
    position: absolute;
    background: #fff;
    padding: 20px;
    z-index: 99999999;
    box-shadow: 0 2px 4px rgba(6, 17, 118, 0.08),
        0 4px 12px rgba(6, 17, 118, 0.08);
}

.dropdown ul li {
    margin: 0 0 5px 0;
}

.dropdown ul li a {
    text-decoration: none;
    font-size: 15px;
    color: #333;
    font-weight: 400;
}

.dropdown ul li a:hover {
    text-decoration: underline;
}

#menu ul li span svg {
    margin-top: -3px;
}

#search {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#search input {
    width: 100%;
    padding: 10px 10px 10px 40px;
    border: 1px solid #9194ac;
    border-radius: 100px;
    transition: all 0.3s ease;
    font-size: 15px;
}

#search button {
    position: absolute;
    left: 12px;
    top: 53%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
}

#search button svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

#hero {
    background-image: url("/images/website/hero/hero-banner-full.png");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-banner-content {
    max-width: 665px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#hero h1 {
    font-family: "Chivo", sans-serif;
    font-size: 55px;
    text-align: center;
    line-height: 65px;
}

#hero p {
    font-size: 18px;
    text-align: center;
    margin-top: 20px;
    text-shadow: 0 0 10px #cbcbcb;
}

#hero a {
    text-decoration: none;
    color: #fff;
    padding: 10px 35px;
    border-radius: 100px;
    background-color: var(--primary-color);
    font-size: 16px;
    transition: all 0.3s ease;
    font-weight: 600;
    margin-top: 15px;
}

#vitrine-cursos {
    width: 100%;
    padding: 50px 0;
}

#vitrine-cursos h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

#vitrine-cursos p {
    font-size: 16px;
    margin-bottom: 30px;
    color: var(--text-color);
    line-height: 23px;
}

#vitrine-cursos-content {
    background-color: var(--secondary-color);
    padding: 30px 0;
}

#categorias-cursos {
    display: flex;
}

#categorias-cursos .slick-track a {
    margin: 0 10px;
}

#categorias-cursos a {
    background-color: #e7e8ef;
    border-radius: 100px;
    padding: 10px 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#categorias-cursos a strong {
    font-size: 15px;
    color: #363636;
    width: 100%;
}

#categorias-cursos a small {
    font-size: 12px;
    color: #666;
}

#categorias-cursos a:hover {
    background-color: #d1d2e0;
}

#carrossel-cursos {
    margin-top: 30px;
}

#carrossel-cursos div.slick-slide {
    margin: 0 15px;
}

.vitrine-cursos a {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid #e7e8ef;
    transition: all 0.3s ease;
}

.vitrine-cursos a:hover {
    box-shadow: 0 2px 4px rgba(6, 17, 118, 0.08),
        0 4px 12px rgba(6, 17, 118, 0.08);
}

.vitrine-cursos a .overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 10px 10px;
}

.vitrine-cursos a .overlay img {
    margin: -20px 0 0 0;
    width: 38px;
    height: 38px;
    border-radius: 100px;
    border: 1px solid #e9e9e9;
}

.vitrine-cursos a .overlay span {
    font-size: 13px;
    color: var(--text-color);
    margin-top: 3px;
}

.vitrine-cursos a .overlay h3 {
    font-size: 17px;
    margin: 5px 0 5px 0;
    color: var(--text-color);
    text-align: center;
    font-weight: 500;
    min-height: 60px;
    display: flex;
    align-items: center;
}

.vitrine-cursos a .overlay small {
    background: #e7e8ef;
    border-radius: 100px;
    padding: 3px 5px;
    font-size: 12px;
    color: #363636;
    margin: 5px 0;
}

.vitrine-cursos a .overlay small svg {
    fill: #363636 !important;
}

.vitrine-cursos a .overlay-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.vitrine-cursos a .overlay-content strong {
    font-size: 16px;
    color: var(--primary-color);
}

#categorias-cursos .slick-prev,
#categorias-cursos .slick-next,
#carrossel-cursos .slick-prev,
#carrossel-cursos .slick-next {
    background-position: center center;
    background-size: 35px 35px;
    width: 35px;
    height: 35px;
    border: 0;
    text-indent: -9999px;
    flex: 0 0 35px;
    cursor: pointer;
    background-color: #fff;
    border-radius: 100px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    box-shadow: 0 2px 4px rgba(6, 17, 118, 0.08),
        0 4px 12px rgba(6, 17, 118, 0.08);
}

#categorias-cursos .slick-prev {
    display: none !important;
}

#carrossel-cursos .slick-prev,
#categorias-cursos .slick-prev {
    background-image: url(/images/website/icons/prev.svg);
    left: 0;
}

#carrossel-cursos .slick-next,
#categorias-cursos .slick-next {
    background-image: url(/images/website/icons/next.svg);
    right: 0;
}

#cursos-mais-acessados {
    width: 100%;
    margin-bottom: 50px;
}

#cursos-mais-acessados h2 {
    font-size: 20px;
    margin-bottom: 20px;
}

#cursos-mais-acessados p {
    font-size: 16px;
    margin-bottom: 30px;
    color: var(--text-color);
    line-height: 23px;
}

#carrossel-mais-acessados {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(226px, 1fr));
    gap: 20px;
}

#depoimentos {
    width: 100%;
    padding: 50px 0;
    background-color: var(--secondary-color);
}

#depoimentos h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.depoimentos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.depoimento {
    background-image: url(/images/website/icons/quote.svg);
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: 10px 10px;
    display: flex;
    flex-direction: column;
    padding: 40px 10px 10px;
    border-radius: 5px;
    background-color: #fff;
    border: 1px solid #e7e8ef;
}

.depoimento p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 23px;
}

.depoimento .student {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
}

.depoimento .student img {
    width: 40px;
    height: 40px;
    border-radius: 100px;
    border: 1px solid #e9e9e9;
}

.depoimento .student div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.depoimento .student div span {
    font-size: 14px;
    color: var(--text-color);
}

.depoimento .student div small {
    font-size: 12px;
    color: #666;
}

#footer {
    width: 100%;
    padding: 50px 0 0;
    background-color: #111111;
}

#footer-topo {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(calc(25% - 40px), 1fr));
    gap: 20px;
}

#footer-logo {
    display: flex;
    flex-direction: column;
}

#footer-logo img {
    margin-bottom: 30px;
}

#footer-logo span {
    font-size: 16px;
    color: #d5d5d5;
    margin-bottom: 5px;
}

.links-footer h5 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
}

.links-footer ul li {
    margin-bottom: 5px;
}

.links-footer ul li a {
    text-decoration: none;
    color: #d5d5d5;
    font-size: 14px;
}

.links-footer ul li a:hover {
    text-decoration: underline;
}

.links-footer img {
    margin-top: 15px;
}

.links-footer .selos {
    display: flex;
    justify-content: flex-end;
}

#footer-base {
    width: 100%;
    padding: 20px 0;
    margin-top: 20px;
    border-top: 1px solid #4d4d4d;
}

#footer-base > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#footer-base > div p {
    font-size: 14px;
    color: #d5d5d5;
}

#footer-base > div div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #d5d5d5;
}

#pagina-detalhes-curso {
    display: flex;
    width: 100%;
    position: relative;
}

#migalhas {
    margin-top: 30px;
    display: flex;
    gap: 8px;
}

#migalhas a {
    text-decoration: none;
    font-size: 14px;
    color: #9c9c9c;
}

#migalhas a:after {
    content: "»";
    color: #9c9c9c;
    margin-left: 8px;
}

#migalhas strong {
    font-size: 14px;
    color: #9c9c9c;
    font-weight: 500;
}

#detalhes-curso {
    margin-top: 35px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

#detalhes-curso h1 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #fff;
}

.avaliacoes {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.avaliacoes a,
.avaliacoes span {
    font-size: 14px;
    color: #e7e8ef;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.tags span {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #e7e8ef;
}

.tags span:first-child svg {
    fill: #e7e8ef !important;
}

#pagina-detalhes-curso:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 290px;
    z-index: -1;
    background-color: #16161d;
}

#infos {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    width: 65%;
    flex: 0 0 65%;
}

#resultado-busca {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    width: 100%;
    flex: 0 0 100%;
}

#conteudo-curso,
#certificado {
    padding: 0 15px;
}

#visao-geral {
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
}

#visao-geral h2,
#conteudo-curso h2,
#certificado h2 {
    font-size: 20px;
    margin-bottom: 15px;
}

#visao-geral p,
#conteudo-curso p,
#certificado p {
    font-size: 15px;
    color: #333;
    line-height: 22px;
    margin-bottom: 15px;
}

#visao-geral ul,
#conteudo-curso ul,
#certificado ul {
    margin-bottom: 15px;
    padding-left: 20px;
    list-style: disc;
}

#visao-geral ul li,
#conteudo-curso ul li,
#certificado ul li {
    margin-bottom: 5px;
    list-style: disc;
    font-size: 15px;
    color: #333;
}

#visao-geral ol,
#conteudo-curso ol,
#certificado ol {
    margin-bottom: 15px;
    padding-left: 20px;
    list-style: disc;
}

#visao-geral ol li,
#conteudo-curso ol li,
#certificado ol li {
    margin-bottom: 5px;
    list-style: number;
    font-size: 15px;
    color: #333;
}

#cursos-relacionados {
    margin-top: 50px;
    margin-bottom: 50px;
}

#cursos-relacionados h2 {
    font-size: 25px;
    margin-bottom: 20px;
}

#vitrine-cursos-relacionados {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(226px, 1fr));
    gap: 20px;
}

.precos {
    width: 30%;
    flex: 0 0 30%;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(6, 17, 118, 0.08),
        0 4px 12px rgba(6, 17, 118, 0.08);
    border-radius: 10px;
    overflow: hidden;
}

#imagem-curso {
    padding: 2px;
}

#imagem-curso img {
    width: 100%;
    border-radius: 9px 9px 0 0;
}

.price-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
}

.price-box strong {
    font-size: 20px;
    color: #4caf50;
    text-align: center;
    font-weight: 800;
}

.price-box a {
    text-align: center;
    text-decoration: none;
    font-size: 17px;
    background-color: #4caf50;
    padding: 9px 0;
    color: #fff;
    font-weight: 600;
}

#topicos-detalhes {
    padding: 10px;
}

#topicos-detalhes h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

#topicos-detalhes ul li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 13px;
}

#topicos-detalhes ul li div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

#topicos-detalhes ul li span {
    font-size: 15px;
    color: #333;
}

#box-professor {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    padding: 0 20px 30px;
}

#box-professor img {
    width: 50px;
    height: 50px;
    border-radius: 100px;
    border: 1px solid #e9e9e9;
    margin-bottom: 10px;
}

#box-professor h3 {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    text-align: center;
    margin-bottom: 5px;
}

#box-professor span {
    font-size: 15px;
    color: #333;
    text-align: center;
    font-weight: 500;
}

#box-professor p {
    font-size: 15px;
    color: #666;
    text-align: center;
    margin-top: 10px;
    line-height: 22px;
}

#box-professor hr {
    width: 100%;
    border: 0;
    border-top: 1px solid #e7e8ef;
    margin: 0 0 20px;
}

#detalhes-categoria {
    margin-top: 35px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

#detalhes-categoria h1 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #000;
}

#cursos-categoria > p {
    font-size: 16px;
    margin-bottom: 30px;
    color: var(--text-color);
    line-height: 23px;
}

#cursos-categoria {
    margin-bottom: 50px;
    width: 100%;
}

#categorias {
    width: 30%;
    flex: 0 0 30%;
    margin-top: 20px;
}

#categorias h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

#categorias ul {
    padding-left: 0;
}
#categorias ul li {
    margin-bottom: 10px;
}
#categorias ul li a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
}
#categorias ul li a:hover {
    text-decoration: underline;
}

#formas-contato {
    display: flex;
    justify-content: space-between;
}

#formas-contato > div {
    width: 48%;
}

#formas-contato > div h2 {
    font-size: 18px;
    margin-bottom: 20px;
}

#formas-contato > div ul li {
    margin-bottom: 10px;
}

#formas-contato > div ul li strong {
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

#formas-contato > div ul li a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: 10px;
}

.form-row input,
.form-row select {
    width: 100%;
    padding: 10px;
    border: 1px solid #e7e8ef;
    border-radius: 5px;
    font-size: 15px;
}

.form-row textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #e7e8ef;
    border-radius: 5px;
    font-size: 15px;
    resize: vertical;
}

.form-row button {
    background-color: #111;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#cursos-cadastro {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}

#cursos-cadastro h1 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #000;
    text-align: center;
}

#cursos-cadastro p {
    font-size: 16px;
    margin-bottom: 30px;
    color: var(--text-color);
    line-height: 23px;
}

#cursos-cadastro > div {
    width: 460px;
}

form label {
    display: block;
    font-size: 15px;
    margin-bottom: 5px;
    color: #333;
}

#detalhes-minha-conta {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

#menu-minha-conta {
    width: 300px;
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
}

#menu-minha-conta a.active,
#menu-minha-conta a:hover {
    background-color: #000;
    color: #fff;
}

#menu-minha-conta a {
    text-decoration: none;
    padding: 10px;
    border: 1px solid #ebebeb;
    border-radius: 5px;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 16px;
    color: #333;
    transition: all ease 0.3s;
}

#conteudo-minha-conta {
    width: 100%;
    flex: 1;
}

#conteudo-minha-conta h1 {
    margin-bottom: 15px;
}

#meus-cursos {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

#meus-cursos a {
    text-decoration: none;
    padding: 10px;
    border: 1px solid #ebebeb;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
    transition: all ease 0.3s;
    display: flex;
    justify-content: space-between;
}

#meus-cursos a strong {
    font-weight: 500;
}

#meus-cursos a span {
    text-decoration: underline;
    display: flex;
    align-items: center;
}

#meus-cursos a span:hover {
    text-decoration: none;
}

#pagina-aula .center {
    width: 99%;
}

#detalhes-aula {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

#lateral-aula {
    display: flex;
    flex-direction: column;
    width: 300px;
    flex: 1 1 300px;
}

#conteudo-aula {
    width: 100%;
}

#conteudo-aula h1 {
    margin-bottom: 15px;
}

.wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
}
.wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#topicos {
    display: flex;
    flex-direction: column;
    background: #ededed;
    padding: 10px;
}

#topicos a {
    border: 1px solid #ccc;
    padding: 12px;
    margin-bottom: -1px;
    text-decoration: none;
    font-size: 14px;
    color: #333;
    display: flex;
    gap: 15px;
    align-items: center;
    background-color: #fff;
}

#topicos a span {
    flex: 1;
}

#topicos a svg {
    width: 20px;
    height: 20px;
}

#progresso {
    display: flex;
    flex-direction: column;
    padding: 10px;
}

#progresso > span {
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 10px;
}

#progresso > div {
    display: block;
    width: 100%;
    height: 5px;
    background-color: #ccc;
    margin-bottom: 3px;
}

#progresso > div span {
    height: 5px;
    display: block;
    background-color: #4caf50;
}

.gerar-certificado {
    background-color: #4caf50;
    text-decoration: none;
    color: #fff;
    padding: 11px;
    margin: 10px 0;
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all ease 0.3s;
}

.gerar-certificado:hover {
    background-color: #439e47;
}

.gerar-certificado svg {
    width: 24px;
    height: 24px;
}

.baixar-certificado {
    background-color: #3f51b5;
    text-decoration: none;
    color: #fff;
    padding: 11px;
    margin: 10px 0;
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all ease 0.3s;
}

.baixar-certificado:hover {
    background-color: #3f89b5;
}

.baixar-certificado svg {
    width: 24px;
    height: 24px;
}

.course-infos {
    display: flex;
    gap: 10px;
}

.course-infos img {
    width: 72px;
}

.progress {
    display: flex;
    align-items: center;
    gap: 10px;
}

.progress > div {
    width: 200px;
    height: 4px;
    background-color: #ccc;
}

.progress > div span {
    display: block;
    height: 4px;
    background-color: #439e47;
}

.progress > span {
    text-decoration: none !important;
    font-size: 15px;
}

#meus-certificados .gerar-certificado,
#meus-certificados .baixar-certificado {
    padding: 5px;
    font-size: 13px;
    border-radius: 5px;
    margin: 0;
}

#meus-certificados .gerar-certificado svg,
#meus-certificados .baixar-certificado svg {
    width: 19px;
    height: 19px;
}

table th {
    text-align: start;
    font-size: 20px;
    font-weight: 500;
}

table td strong {
    font-weight: 400;
}

table {
    border-collapse: collapse;
    width: 100%;
}

table th,
table td {
    padding: 5px;
    border: 1px solid #e3e3e3;
}

.text-center {
    text-align: center;
}

.burguer-menu,
.mob-login,
.mob-show,
.close-menu {
    display: none;
}

.backdrop {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    top: 0;
    left: 0;
    display: none;
}

@media screen and (max-width: 700px) {
    #login-minha-conta {
        display: none;
    }

    #mob-topo {
        flex: 1 1 100%;
        display: flex;
    }

    #menu {
        width: 80%;
        flex: 0 0 80%;
        position: absolute;
        top: 0;
        left: -100%;
        box-shadow: 0 2px 4px rgba(6, 17, 118, 0.08),
            0 4px 12px rgba(6, 17, 118, 0.08);
        background: #fff;
        z-index: 999999;
        transition: all ease 0.3s;
    }

    #menu ul li span {
        display: none;
    }

    #menu ul li .dropdown {
        display: block;
        position: initial;
        padding: 20px;
        z-index: 99999999;
        box-shadow: none;
        width: 100%;
    }

    .mob-login {
        display: flex;
        flex-direction: column;
        gap: 10px;
        border-bottom: 1px solid #ccc;
        padding: 10px 20px;
    }

    .mob-login > a {
        text-decoration: none;
        font-weight: 600;
        color: #333;
    }

    #topo {
        flex-direction: column;
        gap: 5px;
    }

    .burguer-menu {
        display: flex;
        position: absolute;
        left: 15px;
    }

    .burguer-menu svg {
        width: 40px;
        height: 40px;
    }

    .close-menu {
        text-decoration: none;
        display: block;
        position: absolute;
        right: -35px;
        top: -8px;
        font-size: 45px;
        color: var(--primary-color);
    }

    #search {
        width: 100%;
    }

    #footer-topo {
        grid-template-columns: 100%;
    }

    #footer-base > div {
        flex-direction: column;
        gap: 10px;
    }

    #cursos-cadastro > div {
        width: 100%;
    }

    #menu-minha-conta {
        display: none;
    }

    .dropdown::before {
        content: "Categorias";
        font-weight: 600;
        font-size: 15px;
        margin: 0 0 5px -5px;
        display: block;
    }

    .mob-login > div {
        display: flex;
        flex-direction: column;
        gap: 4px;
        margin-left: 5px;
    }

    .mob-login div a {
        font-size: 15px;
        text-decoration: none;
        color: #757575;
    }

    .links-footer .selos {
        justify-content: center;
    }
}

@media screen and (max-width: 425px) {
    #hero {
        min-height: 240px;
    }

    #hero h1 {
        font-size: 28px;
        line-height: 30px;
    }

    #migalhas {
        display: none;
    }

    #detalhes-curso {
        flex-direction: column;
    }

    #infos,
    .precos {
        width: 100%;
        flex: 1 1 100%;
    }

    .mob-show {
        display: block;
    }

    .mob-hide,
    #meus-cursos a > span {
        display: none;
    }

    #detalhes-aula {
        flex-direction: column;
    }

    #lateral-aula,
    #conteudo-aula {
        width: 100%;
        flex: 1 1 100%;
    }

    #lateral-aula {
        order: 2;
    }

    #detalhes-categoria {
        flex-direction: column;
    }
}
