@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;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

html {scroll-behavior: smooth;}
* {margin: 0; padding: 0; box-sizing: border-box; font-family: "Poppins", sans-serif; font-optical-sizing: auto; font-style: normal; font-size: 15px; font-weight: 400; color: var(--preto);}
body {overflow-x: hidden; background-color: var(--bg);}
p {font-size: 15px; line-height: 28px; margin-bottom: 15px; color: var(--preto);}
a,button, input, select, textarea {-webkit-transition: .3s;-o-transition: .3s;transition: .3s; outline: 0;}
a.desativado{opacity: 0.5; pointer-events: none; cursor: not-allowed; filter: grayscale(1);}
input::placeholder {font-size: 15px;}
button {cursor: pointer;}
cite {font-style: normal;}
strong {font-size: inherit;}
a, a:hover {text-decoration: none;}
a:focus, button:focus, input:focus, textarea:focus, select:focus {outline: 0; text-decoration: none;}
ul {-webkit-padding-start:0; -moz-padding-start:0; margin: 0;}
li {list-style-type: none;}
img {max-width: 100%;}
.grid {max-width: 1330px; width: 100%; margin: 0 auto; padding: 0 30px; display: grid; grid-gap: 0px; position: relative; flex-wrap: wrap;}


:root {
    --pretoNovo: #181c32;
    --cinzaNovo: #a1a5b7;
    --azulNovo: #009ef7;
    --cinza: #464255;
    --cinzaC: #A3A3A3;
    --roxo: #9729ec;
    --roxoT: rgb(151 41 236 / 10%);
    --salmao: #ef9a91;  
    --preto: #262626; 
    --verde: #00a389;
    --vermelho : #ff5b5b;
    --amarelo: #FFBB29;
    --azul: #58ceff;
    --branco: #ffffff;
    --bg: #f5f8fa;
    --borda: #ECEBF3;
    --zebrado: #fafafa;
    --whatsapp: #50cd89;
    --laranja: #fd7e14;
}

body {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
    padding: 30px;
    padding-inline-start: 330px;    
}
body.minimizado {
    padding-inline-start: 150px;    
}
body > div.alerta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1;
    background: var(--branco);
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0px 0px 20px -10px rgb(0 0 0 / 20%); 
    display: flex;   
    gap: 10px;
    align-items: center;
    z-index: 9999;
}
body > div.alerta i {
    color: var(--branco);
    padding: 15px;
    border-radius: 10px;
}
body > div.alerta i[class*=exclamation] {
    background: var(--vermelho);    
}
body > div.alerta i[class*=check] {
    background: var(--verde);    
}
body > div.alerta p {
    display: flex;
    flex-direction: column;
    max-width: 250px;
    line-height: 20px;
    font-size: 14px;
    margin-bottom: 0;
}
body > div.alerta p strong {
    font-weight: 600;
}


aside {
    background: linear-gradient(0deg, rgba(243, 242, 247, 1) 0%, rgba(255, 255, 255, 1) 100%);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 1);
    background: var(--branco);
    padding: 30px 20px;
    width: 300px;
    position: fixed;
    top: 0;
    left: 0;
    height: calc(100%);
    box-shadow: 20px 0px 15px -15px rgb(0 0 0 / 3%);    
}

aside button {
    background: var(--branco);
    padding: 0;
    border-radius: 12px;
    box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 12%);
    border: 0;
    height: 35px;
    width: 35px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 5px;
    right: 5px;
    transition: .3s;
    opacity: 0;
    visibility: hidden;
}
aside button:hover {
    background: var(--roxo);
}
aside button:hover i {
    color: var(--branco);
}
aside:hover button {
    opacity: 1;
    visibility: visible;
}
aside button i {
    color: var(--roxo);
    transition: .3s;
}
aside a figure {
    background-image: url('../img/logo.png');
    display: flex;
    margin-bottom: 25px;
    background-size: 150px;
    width: 100%;
    height: 80px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;  
}
aside ul {
    display: flex;
    flex-direction: column;
    gap: 10px;    
}
aside ul li {
    position: relative;
}
aside ul li a {
    display: flex;
    align-items: center;
    gap: 20px;
    background: transparent;
    border-radius: 20px;
    border-radius: 14px;
    padding: 10px 20px;
}
aside ul li.ativo > a, aside > ul > li > a:hover {
    background: var(--roxoT);
    color: var(--roxo);
}
aside ul li.ativo > a i, aside > ul > li > a:hover i {
    color: var(--roxo);
}
aside ul li a i {
    width: 20px;
    text-align: center;
    color: var(--vermelho);
    transition: .3s;
}
aside ul li ul {
    display: none;
}
aside ul li ul.ativo {
    display: unset;
}
aside ul li ul li a {
    position: relative;
    left: 0;
    padding-bottom: 0;
}
aside ul li ul li:last-child a {
    padding-bottom: 12px;
}
aside ul li ul li a:hover, aside ul li ul li a.ativo {
    color: var(--roxo);
}


.minimizado aside {
    width: 90px;
    padding: 30px 15px;
    z-index: 2;
}
.minimizado aside button {
    transform: scaleX(-1);
}
.minimizado aside a figure {
    height: 60px;
    margin-bottom: 15px;
}
.minimizado aside ul li a span {
    display: none;
}
.minimizado aside ul li ul {
    position: absolute;    
    box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 12%);
    background: var(--branco);
    border-radius: 12px;
    z-index: 1;
}
.minimizado aside > ul > li:before {
    content: attr(data-menu);
    position: absolute;
    padding: 5px 10px;
    background: var(--branco);
    box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 12%);
    border-radius: 8px;
    font-size: 14px;
    left: calc(100% + -10px);
    top: 3px;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    text-transform: capitalize;
}
.minimizado aside ul li:hover:before {
    opacity: 1;
    visibility: visible;
}
.minimizado aside ul li ul li a {
    font-size: 14px;
}


header {
    display: flex;  
    justify-content: space-between;
    padding: 30px;
    background: var(--branco);
    box-shadow: 0px 20px 15px -15px rgb(0 0 0 / 5%);
    border-radius: 12px;    
    margin-bottom: 30px;
}
header h1 {
    font-size: 32px;
    font-weight: 600;    
    display: flex;
    flex-direction: column;   
    gap: 5px; 
    margin-top: -10px;
}
main > .vencimento {
    background: var(--vermelho);
    padding: 5px;
    margin-bottom: 30px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    font-size: 14px;
    text-align: center;
    z-index: 9999;
    color: var(--branco);    
}
main > .vencimento * {
    color: var(--branco);
}
main > .vencimento b {
    font-weight: 700;
}
main > .vencimento.tres {
    background: var(--azul);
}
main > .vencimento.dois {
    background: var(--laranja);
}
main > .vencimento.amanha {
    background: var(--vermelho);
}
main > .vencimento.hoje {
    background: var(--preto);
}

main header > nav > ul {
    display: flex;
    gap: 30px;
    align-items: center;
}
main header > nav > ul li {
    position: relative;
}
main header > nav > ul > li:last-child {
    background: var(--vermelho);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-left: -10px;
    cursor: pointer;
    position: relative;
}
main header > nav > ul > li:last-child > i {
    color: var(--branco);    
    position: relative;
    top: 1px;
    font-size: 12px;
}

main header > nav > ul li i {
    font-size: 20px;
}
main header > nav > ul li b {
    position: absolute;
    top: -15px;
    right: -16px;    
    width: 25px;
    height: 25px;
    background: var(--azul);
    color: var(--branco);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-weight: 600;
    font-size: 12px;
}
main header > nav > ul li figure {
    width: 60px;
    height: 60px;
    background-size: cover;
    background-position: center;
    border-radius: 14px;
    background-color: var(--branco);    
}
main header > nav > ul li > ol {
    position: absolute;
    top: 35px;
    right: 0;
    background: var(--branco);
    border-radius: 12px;
    width: fit-content;    
    box-shadow: 0px 0px 25px -5px rgb(0 0 0 / 10%);    
    padding: 15px;
    visibility: hidden;
    opacity: 0;
    transition: .3s;
    z-index: 2;
}
main header > nav > ul li > ol.abrir {
    visibility: visible;
    opacity: 1;
}
main header > nav > ul li > ol li strong {
    display: flex;
    font-weight: 600;
    cursor: auto;
    font-size: 14px;
}
main header > nav > ul li > ol li em {
    display: flex;
    font-size: 12px;
    color: var(--cinzaC);
    cursor: auto;
}
main header > nav > ul li > ol hr {
    margin: 15px 0;
    background: var(--borda);
    height: 1px;
    border: unset;
}




main header > nav > ul li > ol li a {
    color: var(--cinza);
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;  
    padding: 10px 20px;  
    border-radius: 14px;  
    gap: 25px;
}
main header > nav > ul li > ol li a:hover, main header > nav > ul li > ol li a.ativo {
    background: var(--roxoT);  
    color: var(--roxo);
}
main header > nav > ul li > ol li a:hover i, main header > nav > ul li > ol li a.ativo i {
    color: inherit;
}
main header > nav > ul li > ol li a i {
    font-size: 16px;
    transition: .3s;
    color: var(--vermelho);
}


main header > nav > ul .status-whatsapp {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: var(--branco);
    border-radius: 12px;
    border: 1px solid var(--borda);
    gap: 12px;
    transition: .3s;
    cursor: pointer;
}
main header > nav > ul .status-whatsapp:hover {
    border-color: var(--vermelho);
}
main header > nav > ul .status-whatsapp.conectado:hover {
    border-color: var(--whatsapp);
}

main header > nav > ul li.status-whatsapp sup {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-block;
    background-color: var(--vermelho);
    animation: online 1.2s infinite cubic-bezier(0.5, 0, 0, 1); 
}

@keyframes online {
    0% {box-shadow: 0 0 0 0px rgba(46, 125, 50, 0.75);}
    100% {box-shadow: 0 0 0 10px rgba(46, 125, 50, 0);}
}
main header > nav > ul li.status-whatsapp sup:before {
    content: '!';
    display: flex;
    color: var(--branco);
    font-size: 14px;
    align-items: center;
    justify-content: center;
    line-height: 18px;
    font-weight: 500; 
    margin: auto;
}
main header > nav > ul li.status-whatsapp.conectado sup {
    background-color: var(--whatsapp);
    width: 10px;
    height: 10px;
}
main header > nav > ul li.status-whatsapp.conectado sup:before {
    content: '';
}
main header > nav > ul li.status-whatsapp > strong {
    margin-bottom: 0;
    font-size: 13px;
    font-weight: 500;    
    color: var(--vermelho);
    padding-top: 1px;    
}
main header > nav > ul li.status-whatsapp.conectado > strong {
    color: var(--whatsapp);
}
main header > nav > ul li.status-whatsapp > i {
    font-size: 14px;
    color: var(--vermelho);
    position: relative;    
    top: 1px;
}
main header > nav > ul li.status-whatsapp.conectado > i {
    color: var(--whatsapp);
}

main header > nav > ul li.status-whatsapp div {
    position: absolute;
    left: -80px;
    top: calc(100% + -20px);
    background: var(--branco);
    border-radius: 12px;
    width: 400px;
    padding: 30px;
    z-index: 1;
    box-shadow: 0px 20px 15px -15px rgb(0 0 0 / 5%);  
    z-index: 2;
    border: 1px solid var(--borda);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    cursor: auto;
}
main header > nav > ul li.status-whatsapp div.abrir {
    top: calc(100% + 10px);    
    opacity: 1;
    visibility: visible;
}
main header > nav > ul li.status-whatsapp div sup {
    display: flex;
    justify-self: center;
    width: 30px;
    height: 30px;
}
main header > nav > ul li.status-whatsapp div sup:before {
    font-size: 20px;
}
main header > nav > ul li.status-whatsapp div strong {
    text-align: center;
    font-weight: 600;
    display: flex;
    justify-self: center;
    margin-bottom: -5px;    
}
main header > nav > ul li.status-whatsapp div p {
    font-size: 14px;
    text-align: center;
    color: var(--preto);
    line-height: 22px;
    margin-bottom: 0; 
}
main header > nav > ul li.status-whatsapp div a {
    background: var(--whatsapp);
    color: var(--branco);
    padding: 10px 18px;
    border-radius: 12px;   
    display: flex;
    margin-top: 3px;
    width: 100%;
    justify-content: center;    
}
main header > nav > ul li.status-whatsapp div a:hover {
    transform: scale(1.05);
}

main header > nav > ul li.status-whatsapp.conectado div sup {
    width: 30px;
    height: 30px;
}
main header > nav > ul li.status-whatsapp.conectado div sup:before {
    content: '✓';
}


section blockquote {
    background: var(--branco);
    border-radius: 12px;
    width: 100%;
    padding: 30px;
    z-index: 1;
    box-shadow: 0px 20px 15px -15px rgb(0 0 0 / 5%);    
}
section blockquote.roxo {
    background: var(--roxo);
}
section blockquote.vermelho {
    background: var(--vermelho);
}
section blockquote.verde {
    background: var(--verde);
}
section blockquote.amarelo {
    background: var(--amarelo);
}
section blockquote.salmao {
    background: var(--salmao);    
}
section blockquote.azul {
    background: var(--azul);    
}
section blockquote.roxo h2, section blockquote.vermelho h2, section blockquote.verde h2, section blockquote.amarelo h2, section blockquote.salmao h2, section blockquote.azul h2 {
    color: var(--branco);
}
section blockquote h2 {
    font-size: 32px;
    line-height: 30px;
    font-weight: 500;  
}
section blockquote h2 span {
    display: flex;
    margin-top: 18px;
    line-height: 14px;
    color: inherit;
}
section blockquote h2 em {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
}
section blockquote h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 -30px 30px;
    padding: 0 30px 25px;
    border-bottom: 1px solid var(--borda);
    display: flex;
    justify-content: space-between;
    align-items: center;    
}
section blockquote h3 form {
    display: flex;
    gap: 10px;
    align-items: center;
}
section blockquote h3 form label {
    font-size: 13px;
    font-weight: 600;
}
section blockquote h3 form label.inativos {
    flex-direction: row;
    gap: 7px;
    align-items: center;
    padding: 10px;
    border: 1px solid var(--borda);
    border-radius: 10px;
    height: 45px;
}
section blockquote h3 form button {
    margin-top: 0;
    background: var(--verde);
    padding: 11px 20px;    
}
section blockquote h3 form input {
    font-size: 13px;
}
section blockquote h3 form input[type=date] {
}
section blockquote h3 select, section blockquote h3 input {
    border: 1px solid var(--borda);
    border-radius: 14px;
    padding: 9px 12px!important;
    font-size: 13px;
    text-transform: capitalize;
}
section blockquote h3 input {

}
section blockquote h3 input[type=date] {
    text-transform: none;
}
section blockquote h3 input::placeholder {
    color: var(--preto);
    opacity: .5;
}
section blockquote h3 select option {
    font-size: 13px;
}
section blockquote h3 a {
    background: var(--azulNovo);
    color: var(--branco);
    padding: 10px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;    
}
section blockquote h3 a.limpar {
    background: var(--vermelho);
}
section blockquote h3 a i {
    color: inherit;
}
section .blocos {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}
section .blocos:last-child {
    margin-bottom: 0;
}




section form label b {
    position: absolute;
    bottom: 8px;
    z-index: 1;
    right: 8px;
    font-size: 13px;
    background: var(--verde);
    color: var(--branco);
    font-weight: 500;
    padding: 4px 6px;
    border-radius: 8px;
    cursor: pointer;
}
section form label b i {
    font-size: 11px;
    color: var(--branco); 
    margin-left: 2px;   
    position: relative;
    top: -1px;
}
section:not([class*=chatbot]) form div {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(4, 1fr);   
    align-items: end;    
}
section form label {
    display: flex;
    flex-direction: column;
    align-self: center;
    position: relative;
    gap: 5px;
    font-weight: 600;
}
section form label sup {
    position: absolute;
    right: 0;
    top: 3px;
    background: var(--cinza);
    color: var(--branco);
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
}
section form label sup:hover span {
    opacity: 1;
}
section form label sup span {
    font-size: 13px;
    background: var(--cinza);
    color: #fff;
    padding: 8px 15px;
    display: flex;
    position: absolute;
    bottom: 30px;
    width: max-content;
    text-align: center;
    border-radius: 10px;
    line-height: 16px;
    right: -15px;  
    opacity: 0;
    transition: .3s;
    z-index: 1;
}
section form label sup span:before {
    content: '';
    width: 12px;
    height: 12px;
    transform: rotate(45deg);
    background: var(--cinza);
    position: absolute;
    bottom: -5px;
    z-index: 0;
    right: 18px;
}
section form label sub {
    position: absolute;
    font-size: 13px;
    color: var(--cinza);
    line-height: 18px;
    top: calc(100% + -10px);
    background: var(--zebrado);
    padding: 15px 8px 5px;
    border-radius: 0 0 10px 10px;
    border: 1px solid var(--borda);
    width: 100%;
}
section form label sub hr {
    margin: 10px 0;
    background: var(--borda);
    height: 1px;
    border: 0;
    margin-bottom: -5px;    
}
section form input, section form select, section form textarea {
    border: 1px solid var(--borda);
    border-radius: 10px;
    padding: 10px 15px;
    position: relative;
    z-index: 1;
    font-size: 15px;
    background: var(--bg);
}
section form label select:focus, section form label input:focus {
    border-color: var(--roxo);
}
section form button {
    background: var(--azulNovo);
    color: var(--branco);
    border: unset;
    padding: 10px 20px;
    border-radius: 10px;    
    display: flex;
    align-items: center;
    gap: 10px;  
    margin-top: 40px;
}
section form button[disabled] {
    opacity: .5;
}
section form button i {
    color: inherit;
}
section form button[name="desativar"], section form button[name="ativar"] {
    background: none;;
    padding: 0;
    border-radius: 0;
    margin-top: 20px;
    color: var(--vermelho);
    font-size: 15px;
    text-decoration: underline;
}
section form button[name="ativar"] {
    color: var(--verde);
}
section table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}
section th, section td {
    padding: 10px 0;
    border: unset;
    text-align: left;
    font-size: 14px;
}
section .form-permissoes tr td:first-child {
    width: 20%;
}
section .form-permissoes tr td {
    width: 10%;
}
section tr.inativo {
    display: none;
}
section tr.inativo td {
    opacity: 0.25;
}
section td:empty:before {
    content: '-';
}
section td[class^="alerta"]:before, section td[class^="status"]:before {
    content: '';
    background: var(--cinza);
    width: 10px;
    height: 10px;
    display: inline-flex;
    margin-right: 10px;
    border-radius: 10px;
}
section td.status.ativo:before {
    background-color: var(--amarelo);
} 
section td.status.inativo:before {
    background-color: var(--vermelho);
} 
section td.alerta-0:before {
    background-color: var(--azul);
}
section td.alerta-25:before {
    background-color: var(--verde);
}
section td.alerta-50:before {
    background-color: var(--amarelo);
}
section td.alerta-75:before {
    background-color: var(--salmao);
}
section td.alerta-100:before {
    background-color: var(--vermelho);
}
section td i.fa-grip-vertical {
    font-size: 14px;
    margin-right: 5px;
}
section td i.fa-sort-down {
    transform: rotate(-90deg);
    margin-right: 10px;
    position: relative;
    top: 1px;
}
section td ul li {
    font-size: 14px;
    padding: 5px;
}
section td ul li:nth-child(even) {
    background: var(--zebrado);
    border-top: 1px solid var(--borda);
    border-bottom: 1px solid var(--borda);    
}
section td a {
    background: var(--bg);
    border: 1px solid var(--borda);
    color: var(--preto);
    display: flex;
    width: max-content;
    justify-self: right;
    padding: 8px;
    border-radius: 10px;  
}
section td a:hover {
    background: var(--borda);
}
section td a i {
    color: inherit;
    font-size: 14px;
}
section th {
  font-weight: bold;
}
section td:last-child {
    text-align: right;
    position: relative;
}
section td:last-child form button {
    margin: 0;
    padding: 8px 10px;
    background: var(--verde);
    position: absolute;
    top: 11px;
    border-radius: 10px;
    left: 30px;
}

section tbody tr {
    /*background: var(--zebrado);*/
    border-top: 1px solid var(--borda);
    border-bottom: 1px solid var(--borda);
}
section tbody tr figure {
    width: 75px; 
    height: 75px; 
    background-size: cover; 
    background-position: center; 
    display: block;
    border-radius: 10px;
    background-color: var(--bg);    
    margin-right: -30px;
}
section a.adicionar {
    background: var(--verde);
    color: var(--branco);
    padding: 15px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;    
    max-height: 49px;
    justify-content: center;    
}
section a.adicionar i {
    color: inherit;
}



section #area-produtos {
    margin: 40px -30px 0;
    padding: 20px 30px 25px;
    border-top: 1px solid var(--borda);    
    display: block;
}
section #area-produtos:empty {
    display: none;
}
section.recebimentos form button {
    margin-top: 0;
}


section.estoque td:last-child {
    text-align: unset;
}

section td b {
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    color: var(--branco);
    padding: 2px 8px;
    border-radius: 8px;    
}
section td b.pendente {
    background: var(--vermelho);    
} 
section td b.expedido {
    background: var(--azul);    
}


section.perfil blockquote {
    height: fit-content;
}
section.perfil blockquote form div {
    grid-template-columns: 1fr 1fr;
}
section.perfil form#upload {
    width: 165px;
    height: 165px;
    background-size: cover;
    background-position: center;
    border-radius: 18px;    
    position: relative;
    background-color: var(--borda);    
}
section.perfil form#upload input {
    opacity: 0;
    width: 100%;
    height: 100%;    
    cursor: pointer;
}
section.perfil form#upload:hover i {
    background: var(--roxo);
}
section.perfil form#upload i {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--cinza);
    color: var(--branco);
    font-size: 14px;
    padding: 8px;
    border-radius: 8px;    
    transition: .3s;
}
section.perfil blockquote > div {
    display: flex;
    gap: 30px;
    position: relative;
}
section.perfil blockquote > div > div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;    
}
section.perfil h4 {
    font-size: 24px;
    font-weight: 600;    
    margin-bottom: 10px;
}
section.perfil b {
    color: var(--roxo);
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 5px;
    display: flex;
    text-transform: capitalize;
}
section.perfil ul {
    display: flex;
    gap: 60px;
}
section.perfil ul li {
    display: flex;
    gap: 15px;
    align-items: center;
}
section.perfil ul li i {
    position: relative;
    top: -1px;
    color: var(--vermelho);
}
section.perfil a.editar {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    width: 50px;
    height: 50px;
    background: var(--vermelho);
    color: var(--branco);
    border-radius: 10px;    
}
section.perfil a.editar i {
    color: inherit;
}
section blockquote.ajuda div {
    justify-content: space-between;
}
section blockquote.ajuda {
    background: var(--roxo);
    max-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;    
}
section blockquote.ajuda h4 {
    color: var(--branco);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;    
}
section blockquote.ajuda h4 span {
    display: flex;
    color: inherit;
    font-size: 14px;
    font-weight: 500;
}
section blockquote.ajuda p {
    font-size: 15px;
    font-weight: 300;
    color: var(--branco);
    line-height: 22px;
    margin-top: 5px;
}
section blockquote.ajuda a {
    background: var(--cinza);
    color: var(--branco);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    width: fit-content;
    border-radius: 50px;
    font-weight: 300;
}
section blockquote.ajuda a i {
    color: inherit;
}



section.login {
    height: 100vh;
    padding: 30px;
}
section.login:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background-image: url('../img/bg-login.png');
    background-size: cover;
    background-position: 100%;    
}
section.login .grid {
    grid-template-columns: .45fr;
    height: 100%;
}

section.login img {
    max-width: 200px;
}
section.login .grid > div {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
}
section.login h2 {
    font-size: 32px;
    color: var(--cinza);
}
section.login p {
    color: var(--cinza);
    margin-bottom: 25px;
}
section.login p a {
    color: inherit;
    display: unset;
    text-decoration: underline;    
}
section.login sup {
    margin-top: 15px;
    background: var(--vermelho);
    color: var(--branco);
    display: flex;
    width: fit-content;
    padding: 8px 20px;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
}
section.login sup i {
    color: inherit;
}
section.login sub {
    color: var(--cinza);
}
section.login form > a {
    display: flex;
    justify-content: right;
    color: var(--cinza);   
    margin-bottom: 25px; 
    text-decoration: underline;
}
section.login.link form > a {
    justify-content: left;
}
section.login form label {
    color: var(--cinza);    
    margin: 5px 0 25px;
    display: flex;    
}
section.login form input {
    width: 100%;
}
section.login form label[for^=senha] i {
    position: absolute;
    right: 2px;
    bottom: 2px;
    z-index: 1;
    padding: 10px;
    height: 41px;
    font-size: 14px;
    cursor: pointer;
    transition: .3s;
    background: var(--branco);
    border-radius: 12px;
    display: flex;
    align-items: center;
}
section.login form label i:hover {
    color: var(--roxo);
}
section.login.redefinir form a {
    text-decoration: none;
}



section.recebimentos.detalhes td:last-child {
    text-align: left;
}


section blockquote.erros {
    padding-bottom: 100px;
}
section blockquote.erros h4 {
    display: flex;
    flex-direction: column;
    text-align: center;  
    font-size: 64px;
    font-weight: 600;
    margin-bottom: 20px;
}
section blockquote.erros h4 span {
    font-size: 250px;
    font-weight: 700;
    margin-bottom: -75px;   
}
section blockquote.erros p {
    text-align: center;
    margin-bottom: 40px;
}
section blockquote.erros a {
    background: var(--borda);
    color: var(--preto);
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    width: fit-content; 
    margin: auto;
}
section blockquote.erros a:hover {
    background: var(--cinza);
    color: var(--branco);
}


section.bemvindo .blocos:nth-child(1) blockquote {
    flex: 1.5;
}
section.bemvindo .blocos:nth-child(1) blockquote:nth-child(2) {
    flex: 1;
}
section.bemvindo .blocos:nth-child(2) blockquote {
    flex: 1;
}
section.bemvindo .blocos:last-child {
    display: grid;
    grid-template-columns: 1fr .75fr 1fr;    
}
section.bemvindo blockquote.atualizacoes ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
section.bemvindo blockquote.atualizacoes ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--borda);
    padding-bottom: 10px;
}
section.bemvindo blockquote.atualizacoes ul li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
section.bemvindo blockquote.atualizacoes ul li i {
    width: 30px;
    height: 27px;
    background: var(--verde);
    color: var(--branco);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}
section.bemvindo blockquote.atualizacoes ul li.recurso i {
    background-color: var(--verde); /* ícone */
}
section.bemvindo blockquote.atualizacoes ul li.recurso i::before {
    content: "\f135"; 
} 
section.bemvindo blockquote.atualizacoes ul li.reparo i {
    background-color: var(--azul);
}
section.bemvindo blockquote.atualizacoes ul li.reparo i::before  {
    content: "\f0ad"; 
} 
section.bemvindo blockquote.atualizacoes ul li.manutencao i {
    background-color: var(--amarelo);
}
section.bemvindo blockquote.atualizacoes ul li.manutencao i::before {
    content: "\f133"; 
}
section.bemvindo blockquote.atualizacoes ul li.aviso i {
    background-color: var(--vermelho);
}
section.bemvindo blockquote.atualizacoes ul li.aviso i::before   {
    content: "\f071"; 
} 
section.bemvindo blockquote.atualizacoes ul li span {
    display: flex;
    flex-direction: column;
    font-weight: 500;
    justify-content: space-between;
    width: 100%;
}
section.bemvindo blockquote.atualizacoes ul li span time {
    font-size: 14px;
    color: var(--cinzaC);
}



section blockquote.blog ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
section blockquote.blog a {
    padding: 5px 15px;
    border-radius: 10px;
}
section blockquote.blog ul li figure {
    width: 60px;
    height: 60px;
    background-size: cover;
    background-position: center;
    border-radius: 14px;
    background-color: var(--bg);    
}
section blockquote.blog ul li a span time {
    font-size: 14px;
    color: var(--cinzaC);
}
section blockquote.blog ul li a span {
    display: flex;
    flex-direction: column;
    font-weight: 500;    
}
section blockquote.blog ul li a {
    display: grid;
    gap: 10px;
    align-items: center;
    grid-template-columns: max-content 1fr;
    padding: 0;
}
section blockquote.blog ul li a span {
    transition: .3s;
}
section blockquote.blog ul li a:hover span {
    color: var(--roxo);
}


section.duvidas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;    
}
section.duvidas .blocos {
    flex-direction: column;
    gap: 30px;
}
section.duvidas blockquote {
    border: 1px solid var(--branco);
    transition: .3s;
}
section.duvidas blockquote.ativo {
    border-color: var(--roxo);    
}
section.duvidas blockquote.ativo p {
    display: flex;
}
section.duvidas h4 {
    font-weight: 500;
    font-size: 20px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}
section.duvidas p {
    margin-top: 10px;
    display: none;
    margin-bottom: 0;
}


section.guia h4 {
    font-weight: 500;
    font-size: 20px;    
}
section.guia p {
    margin-top: 10px;
    margin-bottom: 30px;
}
section.guia p:last-child {
    margin-bottom: 0;
}


section blockquote.links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
section blockquote.links ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}
section blockquote.links ul li a:hover {
    color: var(--roxo);
}
section blockquote.links ul li i {
    width: 20px;
    height: 20px;
    background: var(--azul);
    color: var(--branco);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}




section blockquote.avisos p {
    margin-bottom: 0;
}
section blockquote.registrar-aviso form {
    display: flex;
    flex-direction: column;
    gap: 10px;    
}
section blockquote.registrar-aviso form textarea {
    height: 100px;
}
section blockquote.registrar-aviso form button {
    margin-top: 0;
    width: fit-content;
    padding: 10px 20px;
}
section blockquote.avisos div {
    border: 1px solid var(--amarelo);
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px; 
}
section blockquote.avisos div i {
    background: var(--amarelo);
    padding: 15px;
    font-size: 20px;
    color: var(--branco);
    border-radius: 12px;    
}




section.integra blockquote figure {
    width: 100%;
    height: 500px;
    border-radius: 30px;
    margin-bottom: 25px;
    background-size: cover;
}
section.integra blockquote time {
    margin-bottom: 12px;
    display: flex;
}
section.integra blockquote h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}


section.noticias .blocos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
section.noticias figure {
    width: 100%;
    height: 200px;
    border-radius: 20px;
    margin-bottom: 25px;
    background-size: cover;
}
section.noticias time {
    font-size: 14px;
    color: var(--cinzaC);    
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}
section.noticias h4 {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
}


section.chamados .blocos {
    flex-direction: column;
}
section.chamados.abrir form div {
    grid-template-columns: .75fr 1fr;
}
section.chamados.abrir form div label {
    gap: 10px;
}
section.chamados.abrir form div label input, section.chamados.abrir form div label select, section.chamados.abrir form div label textarea {
    margin-top: -10px;
}


section form label.foto {
    flex-direction: row;
    gap: 20px;
    align-items: center;
    border: 1px solid var(--borda);
    padding: 10px;
    border-radius: 14px;    
}
section form label.foto figure#preview {
    background-size: cover;
    width: 125px;
    height: 125px;
    background-position: center;
    background-color: var(--bg);
    border-radius: 10px;
}
section form label.foto span {
    display: flex;
    flex-direction: column;
}
section form label.foto input {
    width: 130px;
    border: 0;
    padding: 10px 0;
    border-radius: 0;    
} 





tbody tr[data-nivel="0"] td { 
  background-color: var(--bg);
}

/*tbody tr[data-nivel="1"] td { background: rgb(151 41 236 / 1%); }
tbody tr[data-nivel="2"] td { background: rgb(151 41 236 / 2%); }
tbody tr[data-nivel="3"] td { background: rgb(151 41 236 / 3%); }
tbody tr[data-nivel="4"] td { background: rgb(151 41 236 / 4%); }
tbody tr[data-nivel="5"] td { background: rgb(151 41 236 / 5%); }
tbody tr[data-nivel="6"] td { background: rgb(151 41 236 / 6%); }
tbody tr[data-nivel="7"] td { background: rgb(151 41 236 / 7%); }
tbody tr[data-nivel="8"] td { background: rgb(151 41 236 / 8%); }
tbody tr[data-nivel="9"] td { background: rgb(151 41 236 / 9%); }
tbody tr[data-nivel="10"] td { background: rgb(151 41 236 / 10%); }*/

/*tbody tr[data-nivel]:not([data-nivel="0"]) {
  background-color: var(--bg);
}*/


section.leads td:last-child {
    text-align: left;
}
section.leads .blocos {
    flex-direction: column;
}
section.leads.detalhes tbody tr {
    border: unset;
}
section.leads.detalhes tbody tr strong {
    font-weight: 600;
}
section.leads.detalhes td a {
    justify-self: unset;
    background: unset;
    border-radius: unset;
    padding: unset;
    color: var(--roxo);
    font-size: 14px;
    border: unset;
}
section.leads select, section.leads input {
    border: 1px solid var(--borda);
    padding: 3px 10px;
    font-size: 15px;
    border-radius: 8px;    
}
section.leads td .valor {
    display: inline-flex;
    align-items: center;
    position: relative;
}
section.leads td .valor:before {
    content: 'R$';
    position: absolute;
    left: 10px;
    top: 4px;
    font-size: 15px;
}

section.leads td .valor input {
    padding-left: 32px;
}


section blockquote nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

#forca-senha {
    height: 5px;
    width: 0%!important;
    border-radius: 3px;
    margin-top: 8px;
    transition: all 0.3s ease;
    position: absolute;
    bottom: -10px;    
}

#forca-senha.fraca {
    width: 25%!important;
    background: #f35050;
}

#forca-senha.media {
    width: 50%!important;
    background: #ef6c00;
}

#forca-senha.boa {
    width: 75%!important;
    background: #1565c0;
}

#forca-senha.forte {
    width: 100%!important;
    background: #2e7d32;
}


#status-email {
    position: absolute;
    right: 10px;
    top: 38px;
    z-index: 1;
}
#status-email.invalido {
    color: var(--vermelho);
}
#status-email.valido {
    color: var(--verde);
}



section.campanhas .blocos {
    flex-direction: column;
}
section.campanhas tbody tr:first-child {
    border-top: unset;
}


section.dashboard .top-conversoes table {
    min-width: 550px;
}
section.dashboard .top-conversoes table tr {
    border-top: unset;
}
section.dashboard .bloco-7030 blockquote:first-child {
    flex: 2;
}
section.dashboard .bloco-7030 blockquote:last-child {
    flex: 1;
}


section.whatsapp blockquote h4 {
    font-weight: 600;
}
section.whatsapp blockquote .qrcode #area-qrcode {
    border: 1px solid var(--preto);
    border-radius: 12px;
    overflow: auto;    
    margin-bottom: 20px;
}
section.whatsapp blockquote .qrcode #imagem-qrcode {
    filter: grayscale(100%) contrast(200%);
    image-rendering: pixelated; 
    display: block;
    margin: 0 auto;
    background-color: #fff;
    padding: 10px;
}
section.whatsapp blockquote .qrcode {
    display: grid;
    grid-template-columns: .75fr 1fr;
    gap: 40px;    
}
section.whatsapp blockquote .qrcode ul {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
section.whatsapp blockquote .qrcode ul li {
    display: flex;
    gap: 10px;
}
section.whatsapp blockquote .qrcode ul li strong {
    font-weight: 600;
}
section.whatsapp blockquote .qrcode ul li p {
    margin-bottom: 0;
}
section.whatsapp blockquote .qrcode ul li b {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 25px;
    height: 25px;
    background: var(--borda);
    border-radius: 50px;
}
section.whatsapp blockquote .qrcode .tabs {
    display: flex;
    align-items: center;
    gap: 20px;
}
section.whatsapp blockquote .qrcode .tabs button {
    width: 100%;
    background: var(--branco);
    border-radius: 12px;
    border: 1px solid var(--borda);
    padding: 15px;
}
section.whatsapp blockquote .qrcode .tabs button.ativo {
    border-color: var(--preto);
    background: var(--bg);
}
section.whatsapp blockquote .qrcode .area button {
    background: var(--azulNovo);
    color: var(--branco);
    padding: 10px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 0;
    width: 100%;
    justify-content: center;    
}

section.whatsapp blockquote .qrcode .area .progress {
    width: 100%;
    height: 8px;
    background-color: #e9ecef; /* Cor de fundo (cinza claro) */
    border-radius: 4px;
    overflow: hidden;
    margin-top: 10px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
}
section.whatsapp blockquote .qrcode .area .progress-bar {
    height: 100%;
    transition: .3s;
}
section.whatsapp blockquote .qrcode .area .bg-success { background-color: var(--whatsapp); }
section.whatsapp blockquote .qrcode .area .bg-warning { background-color: var(--azul); } 
section.whatsapp blockquote .qrcode .area .bg-danger  { background-color: var(--vermelho); }




section.conta blockquote ol {
    display: flex;
    gap: 15px;
}
section.conta blockquote ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
section.conta blockquote ul li b {
    font-weight: 600;
}
section.conta blockquote a {
    background: var(--azulNovo);
    padding: 8px 24px;
    border-radius: 8px;
    display: flex;
    width: fit-content;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--branco);    
    margin-top: 10px;
}




section.planos nav {
    margin: auto;
    background: var(--branco);
    border-radius: 12px;
    z-index: 1;
    box-shadow: 0px 20px 15px -15px rgb(0 0 0 / 5%);   
}
section.planos nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 10px;
}
section.planos nav ul li a {
    padding: 10px 20px;    
    display: flex;
    border-radius: 12px;
    font-weight: 600;
    color: var(--cinzaC);
}
section.planos nav ul li a.ativo, section.planos nav ul li a:hover {
    background: var(--roxo);
    color: var(--branco);
}
section.planos blockquote .plano {
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--borda);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;    
}
section.planos blockquote .plano h4 {
    font-weight: 600;
    font-size: 20px;
}
section.planos blockquote .plano p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 0;
}
section.planos blockquote .plano ul {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 20px;
}
section.planos blockquote .plano ul li {
    font-size: 13px;
}
section.planos blockquote .plano ul li i {
    color: var(--whatsapp);
}
section.planos blockquote .plano sup {
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid var(--cinzaC);
}
section.planos blockquote .plano h5 {
    margin: 20px 0;
    font-size: 32px;
    font-weight: 600;
}
section.planos blockquote .plano h5 sub {
    font-size: 16px;
    vertical-align: unset;
    font-weight: 500;
    margin-right: 3px;
}
section.planos blockquote .plano h5 em {
    font-size: 13px;
    display: flex;
    color: var(--cinzaC);
    margin-top: -5px;
    font-weight: 500;
}
section.planos blockquote .plano h5 span {
    display: flex;
    color: var(--preto);
    font-size: 15px;
    gap: 5px;
}
section.planos blockquote .plano h5 span s {
    color: inherit;
}
section.planos blockquote .plano h5 span b {
    font-weight: 600;
}
section.planos blockquote .plano ol {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
section.planos blockquote .plano ol li a {
    background: var(--azulNovo);
    padding: 8px 24px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--branco);
}
section.planos blockquote .plano ol li:last-child a {
    background: var(--azulNovo);
}

section.planos blockquote .plano.atual ol li a {
    background: var(--cinzaC);
    opacity: .7;
}
section.planos blockquote .plano.mais-vendido {
    border: 1px solid var(--roxo);
}
section.planos blockquote .plano.mais-vendido strong {
    content: 'Mais vendido';
    font-weight: 600;
    color: var(--branco);
    background: var(--roxo);
    position: absolute;
    top: -18px;
    padding: 5px 25px;
    border-radius: 50px;
    left: 0;
    right: 0;
    margin: auto;
    width: fit-content;
}
section.planos blockquote .perguntas div {
    margin-bottom: 20px;
}
section.planos blockquote .perguntas h4 {
    font-weight: 500;
    font-size: 16px;    
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;    
    cursor: pointer;
}
section.planos blockquote .perguntas p {
    margin-top: 10px;
    display: none;
    margin-bottom: 0;
}
section.planos blockquote .perguntas div {
    border-radius: 12px;
    border: 1px solid var(--borda);
    padding: 20px;
}
section.planos blockquote .perguntas .ativo p {
    display: block;
}
section.planos blockquote .perguntas .ativo h4 i {
    transform: rotate(180deg);
}


section.checkout blockquote h3 {
    gap: 30px;
}
section.checkout blockquote h3 strong {
    font-weight: inherit;
    position: relative;
    width: 100%;
    color: var(--cinzaC);
    font-weight: 400;
}
section.checkout blockquote h3 strong:before {
    content: '';
    width: 100%;
    height: 2px;
    background: var(--roxo);
    position: absolute;
    bottom: -26px;
    opacity: 0;
}
section.checkout blockquote h3 strong.ativo {
    color: var(--preto);
    font-weight: 600;
}
section.checkout blockquote h3 strong.ativo:before {
    opacity: 1;
}

section.checkout .blocos .divisor {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
section.checkout .divisor blockquote {
    display: flex;
    gap: 20px;
}
section.checkout .divisor blockquote:first-child {
    flex-direction: column;
}
section.checkout .divisor blockquote:first-child ul {
    border-top: 1px solid var(--borda); 
    padding: 20px 0 0;     
    display: flex;
    flex-direction: column;
    gap: 6px;
}
section.checkout .divisor blockquote:first-child ul li {
    display: flex;
    justify-content: space-between;
}
section.checkout .divisor blockquote:first-child ul li:last-child {
    border-top: 1px solid var(--borda);   
    margin-top: 18px;   
    padding-top: 20px;
    font-size: 25px;
    font-weight: 600;
}
section.checkout .divisor blockquote:first-child ul li:last-child b {
    font-size: inherit;
    font-weight: inherit;
}
section.checkout .divisor blockquote i {
    font-size: 20px;
    position: relative;
    top: 2px;
    height: fit-content;
}
section.checkout .divisor blockquote [class*=circle] {
    color: var(--azul);
} 
section.checkout .divisor blockquote [class*=lock], section.checkout .divisor blockquote [class*=shield] {
    color: var(--whatsapp);
}
section.checkout .divisor blockquote p {
    line-height: 24px;
    margin-bottom: 0;
}
section.checkout .divisor blockquote h4 {
    font-size: 18px;
    font-weight: 600;    
}
section.checkout form h4 {
    font-size: 18px;
    font-weight: 600;    
    margin: 30px 0 15px;
}
section.checkout form h4:first-child {
    margin-top: 0;
}
section.checkout form div {
    grid-template-columns: 1fr 1fr;    
    gap: 20px 30px;    
}
section.checkout form div#area-qrcode {
    grid-template-columns: 1fr;
}
section.checkout form fieldset#etapa-pagamento label {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 13px;
    margin-bottom: 5px;
}
section.checkout form fieldset#etapa-pagamento label strong {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}
section.checkout form fieldset#etapa-pagamento label p {
    margin: unset;
}
section.checkout form fieldset#etapa-pagamento label .pix {
    width: 30px;
    fill: var(--verde);    
}
section.checkout form {
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--borda);    
}
section.checkout form [name=cep] {
    max-width: 200px;
}
section.checkout form p {
    font-size: 12px;
    margin-top: 5px;
}
section.checkout form p a {
    font-size: inherit;
    color: var(--roxo);
    border-bottom: 1px solid var(--roxo);
}
section.checkout form [name=endereco] {
    margin-bottom: 20px;
}
section.checkout form div.tres {
    grid-template-columns: 1fr 1fr 1fr;   
    margin-bottom: 20px; 
}
section.checkout form ol {
    display: flex;
    align-items: center;  
    margin-top: 30px;  
    gap: 15px;
}
section.checkout form ol li a {
    color: var(--cinzaC);
    border: 1px solid var(--cinzaC);
    padding: 15px 20px;
    border-radius: 15px;
    display: flex;    
}
section.checkout form ol li button {
    margin-top: 0;
}
section.checkout form fieldset {
    border: 0;
}
section.checkout blockquote {
    height: fit-content;
}
section.checkout blockquote.plano h4 {
    border-bottom: 1px solid var(--borda);  
    padding-bottom: 20px;  
    margin-bottom: 20px;
}
section.checkout blockquote .periodo {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 5px;
    justify-content: space-between;
}
section.checkout blockquote .periodo div {
    display: flex;
    flex-direction: column;
    position: relative;
}
section.checkout blockquote .periodo div h5 {
    position: absolute;
    left: 0;
    top: -32px;
    font-weight: 600;
}
section.checkout blockquote .periodo select {
    border: 1px solid var(--borda);
    border-radius: 10px;
    padding: 10px 15px;
    position: relative;
    z-index: 1;
    font-size: 15px;
    background: var(--bg);
}
section.checkout blockquote .periodo select[disabled] {
    border-color: var(--bg);
}
section.checkout blockquote .periodo select[disabled]:before {

}
section.checkout blockquote .periodo > span {
    background: var(--roxo);
    text-transform: uppercase;
    color: var(--branco);
    border: unset;
    padding: 6px 16px 5px;
    border-radius: 50px;
    display: flex;
    font-weight: 500;
    font-size: 14px;  
    gap: 2px;
}
section.checkout blockquote .periodo > span span {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}
section.checkout blockquote .periodo strong b {
    font-weight: 600;
    font-size: 20px;
}
section.checkout blockquote .periodo strong s {
    display: flex;
    color: var(--cinzaC);
}


section.chatbot blockquote {
    height: fit-content;
}
section.chatbot h3 button {
    background: var(--azulNovo);
    color: var(--branco);
    border: unset;
    padding: 10px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;   
}
section.chatbot h3 button i {
    color: inherit;
}
section.chatbot form.configuracoes {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
section.chatbot form.configuracoes button {
    margin-top: 0;
    width: fit-content;
}
section.chatbot form.horarios table {
    min-width: unset;
}
section.chatbot form.horarios table tbody tr {
    border: unset;
}
section.chatbot form.horarios table td:first-child {
    padding-right: 20px;
}
section.chatbot form.horarios table td:last-child {
    text-align: left;
}
section.chatbot form.horarios button {
    margin-top: 20px;
}
section.chatbot form.horarios td {
    padding: 5px;
}
section.chatbot form.horarios input {
    padding: 5px 25px;
}
section.chatbot form.dominio {
    position: relative;
    margin-bottom: 30px;
}
section.chatbot form.dominio button {
    margin: unset;
    position: absolute;
    right: 9px;
    bottom: 8px;
    z-index: 1;
    padding: 7px;
    color: var(--branco);
    background: var(--verde);
    border-radius: 6px;
}
section.chatbot form  h4 {
    font-weight: 600;
    margin-bottom: 10px;
}
section.chatbot form label {
    width: 100%;
}
section.chatbot pre {
    display: flex;
    flex-direction: column;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--borda);    
}
section.chatbot pre h4 {
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 15px;
}
section.chatbot pre code {
    display: flex;
    padding: 20px;
    background: var(--borda);
    border-radius: 10px;
    width: fit-content;
    align-items: center;
    gap: 15px;    
    margin-bottom: 20px;
    text-wrap: auto;    
    position: relative;
}
section.chatbot pre em {
    font-size: 13px;
    font-style: italic;    
    text-wrap: wrap;
}
section.chatbot pre em b {
    font-weight: 600;
    font-size: inherit;
}
section.chatbot pre p {
    text-wrap: auto;
    line-height: 24px;
}
section.chatbot pre code span {
    font-family: monospace;
    font-size: 14px;
    line-height: 22px;    
}
section.chatbot pre code i {
    background: var(--cinza);
    padding: 10px;
    border-radius: 6px;
    color: var(--branco);
    cursor: pointer;    
}
section.chatbot pre code sup {
    font-size: 13px;
    font-weight: 500;
    background: var(--cinza);
    color: var(--branco);
    position: absolute;
    top: -30px;
    right: -9px;
    padding: 5px 15px;
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}
section.chatbot pre code sup:before {
    content: '';
    position: absolute;
    bottom: -5px;
    width: 12px;
    height: 12px;
    background: var(--cinza);
    transform: rotate(45deg);
    right: 0;
    left: 0;
    margin: auto;
}
section.chatbot pre code sup.ativo {
    opacity: 1;
    visibility: visible;
    top: -18px;
}
section.chatbot .guia {
    display: flex;
    flex-direction: column;
    padding: 20px 30px;
    border-radius: 12px;
    border: 1px solid var(--borda);    
    margin-bottom: 20px;
}
section.chatbot .guia:last-child {
    margin-bottom: 0;
}
section.chatbot .guia h4 {
    font-weight: 600;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
}
section.chatbot .guia h4 i {

}
section.chatbot .guia b {
    font-weight: 600;
}
section.chatbot .guia ul {
    flex-direction: column;
    gap: 5px;
    margin-top: 15px;
    /*display: none;*/
    display: flex;
}
section.chatbot .guia.ativo ul {
    display: flex;
}
section.chatbot .guia em:first-child {
    margin-top: 15px;
}
section.chatbot .guia em {
    font-size: 13px;
    font-style: italic;
    text-wrap: wrap;
    display: flex;    
    margin-bottom: 10px;
}
section.chatbot .perguntas {
    display: grid;
    grid-template-columns: 1fr;
}
section.chatbot .card-pergunta > span {
    display: flex;
    position: absolute;
    left: -13px;
    top: 0;
    bottom: 0;
    margin: auto;
    background: var(--whatsapp);
    padding: 3px;
    width: 25px;
    height: 25px;
    color: var(--branco);
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}
section.chatbot .card-pergunta {
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--borda);
    position: relative;
    background: var(--bg);
}
section.chatbot .card-pergunta .area-opcoes.remover {
    display: none;
}
section.chatbot .card-pergunta .tres {
    display: flex;
    gap: 15px;    
}
section.chatbot .card-pergunta .tres label:nth-child(1) {
    max-width: 150px;
}
section.chatbot .card-pergunta .tres label:nth-child(2) {
    max-width: 150px;
}
section.chatbot .card-pergunta .tres label:nth-child(5) {
    max-width: 100px;
}
section.chatbot .card-pergunta label {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    gap: 5px;
    width: 100%;
    font-weight: 600;
}
section.chatbot .card-pergunta label.remover {
    display: none;
}
section.chatbot .card-pergunta input, section.chatbot .card-pergunta select {
    border: 1px solid var(--borda);
    border-radius: 10px;
    padding: 10px 15px;
    position: relative;
    z-index: 1;
    font-size: 15px;
    background: var(--branco);    
}
section.chatbot .card-pergunta .btn-remover {
    border: unset;
    background: unset;
    color: var(--vermelho);
    text-decoration: underline;
    display: flex;
    justify-self: end;
    margin-top: 0;
}
section.chatbot .card-pergunta .btn-remover i {
    color: inherit;
}
section.chatbot #container-perguntas {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
section.chatbot .card-pergunta .btn-add-opcao, section.chatbot .btn-salvar-fluxo {
    background: var(--azulNovo);
    color: var(--branco);
    border: unset;
    padding: 10px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;    
    width: fit-content;    
    margin-top: 0;
}
section.chatbot .card-pergunta .btn-add-opcao i, section.chatbot .btn-salvar-fluxo i {
    color: inherit;
}
section.chatbot .btn-salvar-fluxo {
    margin-top: 30px;
    background: var(--verde);
}
section.chatbot .card-pergunta .btn-remover-add {
    color: var(--vermelho);
    background: unset;
    border: unset;
    width: 30px;
    height: 30px;   
    padding: 0; 
    margin-top: 0;
}
section.chatbot .card-pergunta .btn-remover-add i {
    color: inherit;
}
section.chatbot .area-opcoes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 1px solid var(--borda);
    padding: 20px;
    background: var(--branco);
    border-radius: 12px; 
    margin-bottom: 15px;   
}
section.chatbot .area-opcoes h6 {
    margin-bottom: 8px;
    font-weight: 600;
}
section.chatbot .area-opcoes input {
    background: var(--bg);
    width: 100%;
}
section.chatbot .container-opcoes {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
section.chatbot .container-opcoes fieldset {
    border: unset;
    display: flex;
    gap: 15px;
    align-items: center;
}




section.mensagens .conversa {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 400px;
    overflow-y: auto;
    border: 1px solid var(--borda);
    border-radius: 12px;
    padding: 12px 6px;
    background: var(--bg);
}
section.mensagens .msg {
    display: flex;
    margin: 6px 10px;
}
section.mensagens .msg.eu {
    justify-content: flex-end;    
}
section.mensagens .balao {
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.4;
    background: var(--branco);    
}
section.mensagens .eu .balao {
    border-radius: 10px 0 10px 10px;
    background: var(--borda);    
}
section.mensagens .lead .balao {
    border-radius: 0 10px 10px 10px;
}
section.mensagens .balao .nome {
    font-size: 12px;
    font-weight: bold;
    color: #555;
    margin-bottom: 2px;    
    text-align: right;    
}

section.mensagens .balao .hora {
    font-size: 11px;
    color: #999;
    margin-top: 4px;
    text-align: right;
}

section.mensagens .enviar {
    margin-top: 15px;
    border: 1px solid var(--borda);
    border-radius: 50px;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: space-between;  
    padding: 0 15px;    
}
section.mensagens .enviar input {
    padding: 10px 5px;
    border: unset;
    background: unset;
    width: 100%;
}
section.mensagens .enviar button {
    margin-top: 0;
}