@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    border: 0;
    font-family: "Poppins", sans-serif;
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
}

ol,
ul {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    text-decoration: none;
}

summary {
    list-style: none;
    cursor: pointer;
}

summary::-webkit-details-marker {
    display: none;
}

a:visited {
    text-decoration: none;
}

.titulo_pagina {
    color: #ffd84b;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

html,
main {
    scroll-behavior: smooth;
}

main {
    flex: 1;
    width: 100%;
    overflow: auto;
    scrollbar-width: none;
}

header {
    background-color: #ffffff;
    width: 100%;
    padding: 0.4rem 1rem;
    padding-top: calc(0.6rem + env(safe-area-inset-top));
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 75px;
}

.select_flecha {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 0.55rem;
    padding-right: 2.5rem;
    border-radius: 10px;
    font-size: 14px;
    background-color: #fff;
    color: #333;
    cursor: pointer;
    background-image: url(../img/flecha_select.png);
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    background-size: 12px;
    outline: none;
    border: 1px solid #dbdbdb;
    width: fit-content;
    width: 100%;
}

.descricao_secao {
    font-size: 14px;
}

.div_header_logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.img_perfil_header {
    height: 54px;
    border-radius: 50%;
    border: 2px solid #80808047;
    cursor: pointer;
    min-width: 54px;
    object-fit: cover;
}

.nav_logo {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav_logo img {
    height: 100%;
    height: 48px;
}

footer {
    background-color: #ffffff00;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
    padding-bottom: calc(0.5rem + env(safe-area-inset-bottom));
    box-sizing: border-box;
    min-height: 70px;
    overflow: auto;
    gap: 0.8rem;
    scrollbar-width: none;
}

.texto_footer {
    font-size: 14px;
    font-weight: 500;
    color: #8A8E91;
}

.div_footer_icones {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: end;
    gap: 0.3rem;
    color: rgb(0, 0, 0);
    background-color: white;
    padding: 0.6rem 0.8rem;
    border-radius: 12px;
    width: fit-content;
    border: 1px solid #dbdbdb;
    min-width: fit-content;
}

.div_search_sem_borda {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    padding: 0.65rem 0.8rem;
    border-radius: 10px;
    color: #333;
    border: 1px solid #dbdbdb;
    outline: none;
}

.div_search_sem_borda i {
    width: 16px;
    height: 16px;
    color: #6b7280;
}

.div_search_sem_borda input {
    border: none;
    outline: none;
    font-size: 14px;
    width: 100%;
}

.icones_footer {
    color: #00A3E2;
}

.icone_central {
    background-color: #00A3E2;
    color: white;
    position: absolute;
    transform: translate(-50%, -50%);
    top: -30%;
    height: 64px;
    width: 64px;
    position: absolute;
    border: 1px solid #00A3E2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    left: 50%;
}

.titulos_espaco {
    display: flex;
    margin-bottom: 0.4rem;
    align-items: center;
    gap: 0.4rem;
}

.icones_footer {
    font-size: 20px;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.descricao_aula_modulo{
    font-size: 14px;
}

.menu-lateral {
    position: fixed;
    top: calc(75.98px + env(safe-area-inset-top));
    bottom: 0;
    right: -100%;
    width: 100%;
    background-color: #2B2148;
    color: white;
    padding: 20px 20px;
    transition: right 0.3s ease-in-out;
    z-index: 9999;
    box-sizing: border-box;
}

.menu-lateral.ativo {
    right: 0;
}

.menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.menu-links li {
    margin: 15px 0;
}

.menu-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

.estilo_menu {
    background-color: #2B2148;
    color: white;
    padding: 0.6rem;
    border-radius: 6px;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
}

body {
    height: 100dvh;
    background: #EAEFF5;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.container_conteudo {
    min-height: calc(100vh - 136.23px);
    display: flex;
    flex-direction: column;
    justify-content: start;
    margin: 1rem;
    gap: 1rem;
    margin-bottom: 4rem;
}

.titulo_secao {
    font-size: 16px;
    font-weight: 500;
}

.div_footer_icones.ativo i,
.div_footer_icones.ativo .texto_footer {
    color: #ffcc00 !important;
}

input[type="datetime-local"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    padding: 8px;
    border-radius: 8px;
    background-color: #fff;
    color: #333;
    font-family: inherit;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
    outline: none;
}

input[type="datetime-local"]::placeholder {
    color: #999;
}

input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    display: none;
}