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

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

header{
    background-color: #0D2D44;
    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;
}

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

.texto_footer{
    font-size: 14px;
    font-weight: 400;
}
.texto_erro{
    font-size: 24px;
    color:#222222;
    justify-content: center;
    text-align: center;
}

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

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

.texto_cliveron{
    color: #00B4D8;
}

.logo_cliveron{
    width: 180px;
}

#abrirSuporte{
    cursor: pointer;
    font-size: 18px;
}

#abrirSuporte:hover{
    color: #009AB3;
}

.titulo_suporte {
    color: black;
    font-weight: 600;
    font-size: 20px;
}

input {
    outline-color: black;
}

textarea{
    outline-color: black;
}

/* MENU LATERAL */
.menu-lateral {
    position: fixed;
    top: calc(60.38px + env(safe-area-inset-top));
    bottom: 0;
    right: -100%;
    width: 100%;
    background-color: #0D2D44;
    color: white;
    padding: 40px 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;
}

.menu-links a:hover {
    color: #009AB3;
}

.estilo_menu{
    background-color: #00242C;
    padding: 0.6rem;
    border-radius: 4px;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
}
/* MENU LATERAL */

/* MODAL SUPORTE */
.modal-suporte {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}


.conteudo-modal {
    background-color: #fff;
    padding: 1rem;
    border-radius: 12px;
    max-width: 400px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    position: relative;
    width: 100%;
    margin: 1rem;
    box-sizing: border-box;
}

.fechar-modal {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: black;
}

.canal {
    display: flex;
    gap: 10px;
    background: #E7EBF4;
    border-radius: 12px;
    padding: 12px;
    margin-top: 20px;
    align-items: center;
    color: black;
    border: 1px solid #00000021;
    cursor: pointer;
}

.canal h3{
    font-weight: 600;
}

.icone {
    font-size: 26px;
    padding-top: 5px;
}

.whatsapp { color: #000000; }
.telefone { color: #000000; }
.email { color: #0D2D44; }
/* MODAL SUPORTE */
