@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    border: 0;
    font-family: "Inter", 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;
}


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

header {
    background-color: #171B24;
    width: 100%;
    padding: 0.6rem 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: 71.19px;
}

.nav_logo {
    height: 100%;
}

.mensagem_base {
    color: #ffffff;
    display: flex;
    align-items: center;
    background-color: #26293b;
    border-radius: 6px;
    padding: 1rem;
    box-sizing: border-box;
    gap: 1rem;
    border: 1px solid #2F3350;
    flex-direction: column;
    min-width: 100%;
    cursor: default;
    transition: all 0.3s ease;
}

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

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: 75px;
}

.select_flecha{
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 0.7rem 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    background-color: #fff;
    color: #333;
    cursor: pointer;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background-image: url(../img/flecha_select.png);
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    background-size: 12px;
    outline: none;
}

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

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

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

.menu-lateral {
    position: fixed;
    top: calc(71.19px + env(safe-area-inset-top));
    bottom: 0;
    right: -100%;
    width: 100%;
    background-color: #171B24;
    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: #00242C;
    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: #171B24;
    color: white;
    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_espaco {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.saldo-moedas {
    background: #2a2f40;
    padding: 8px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.saldo-moedas img {
    width: 24px;
}

.div_moedas_header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.input_modal {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    margin-top: 5px;
    box-sizing: border-box;
    resize: none;
}

.form-group {
    margin-bottom: 15px;
    text-align: start;
}