@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;
}

ol,
ul {
    list-style: none;
}

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

a {
    text-decoration: 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;
}

header {
    background-color: #000000;
    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: 78.98px;
}

.nav_logo {
    height: 100%;
}

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

footer {
    background-color: #212224;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    padding-bottom: calc(1rem + env(safe-area-inset-bottom));
    box-sizing: border-box;
    min-height: 69px;
}

.texto_footer {
    font-size: 14px;
    font-weight: 400;
}

.div_footer_icones {
    display: flex;
    align-items: center;
    flex-direction: column;
    color: white;
}

.btn_voltar{
    font-size: 14px;
    background: linear-gradient(90deg, #ffcc00, #ffaa00);
    border-radius: 6px;
    cursor: pointer;
    height: 24px;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.icones_footer {
    font-size: 20px;
    width: 24px;
}

.menu-lateral {
    position: fixed;
    top: calc(75.98px + env(safe-area-inset-top));
    bottom: 0;
    right: -100%;
    width: 100%;
    background-color: #000000;
    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: #3F444A;
    color: white;
    padding: 0.6rem;
    border-radius: 6px;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
}


body {
    height: 100vh;
    background: #EAEFF5;
    color: rgb(0, 0, 0);
    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;
}

.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: .7rem 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    background-color: #fff;
    color: #333;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px;
    font-family: inherit;
    outline: none;
}

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

/* Ícone do calendário (iOS) – deixar transparente */
input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    opacity: 0; /* remove o ícone padrão */
    display: none;
}