* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    border: none;
}

body {
    padding-top: 0px;
    min-height: 100vh;
    font-family: sans-serif;
    background: rgba(0,0,0,0.9);
}

.container {
    margin: 0 auto;
    height: 600px;
    width: 380px;  /* 90% da altura da tela */ 
    position: relative;
    text-align: center;
    border-radius: 2px;
    overflow: hidden;
    background: rgba(249, 252, 249);
}

.container .blackdiv {
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    justify-content: center;
    opacity: 0;
    transition: ease-out 300ms;
    background: rgba(0,0,0,0.7);
}

.container .box-menu {
      margin: 30px auto;
      padding: 20px 0;
      max-height: 500px;
      min-height: 50px;
      max-width: 90%;
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: center;     
      /*border: 1px solid tomato;*/
    }

.container .fechado {
    transition: all .3s ease, opacity .3s ease;
    pointer-events: none;
    opacity: 0;
}

.container .zeroMargin {
    display: none;    
}


.container .box-menu h2 {    
      color: #87878c;
    }

    .container .box-menu .opcao {
      width: 70%;
      display: block;      
      color: white;
      text-decoration: none;
      padding: 12px 20px;
      margin: 20px auto;
      border-radius: 8px;
      background: silver;
      transition: background 0.3s ease;
    }

.container .box-menu #calc {
    background: #3599F2;
}

    .container .box-menu .opcao:hover {
      background: #0056b3;
    }

.container .boxMensagem {
    min-width: 80%;
    min-height: 175px;
    padding-bottom: 20px;
    background: #fff;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%,-50%) scale(.8);
    transition: ease-in-out 200ms;
    opacity: 0;
    /*border: 1px solid gold;*/
}

.container .boxMensagem h2 {
    font-size: .8em;
    padding: 5px 0 5px 5px;
    text-align: left;
    color: #FFEDFF;
    background: #6300ef;
}


.container .boxMensagem .informations {
    width: 65%;
    margin: 20px auto 0 auto;
    padding: 5px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: rgba(202, 54, 255, 0.13);
    /*border: 1px solid;*/
}

.container .boxMensagem .informations > div {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;    
    font-weight: bold;
    /*background: gold;*/
}

.container .boxMensagem .informations div label {    
    flex: 1;
    font-size: 1em;
    text-align: left;
    /*border: 1px solid green;*/
}

.container .boxMensagem .informations div span {
    flex: 1;
    text-align: right;
    font-family: sans-serif;
    font-size: 1em;
    color: #959595;
    /*border: 1px solid tomato;*/
}

.container .boxMensagem .informations #positiva {
    color: #15ad20;
}

.container .boxMensagem .informations #extra {
    color: #408bea;
}

.container .boxMensagem .informations #negativa {
    color: #f93f5e;
}

.container .boxMensagem .informations #noturna {
    color: #6F316E;
}

.container .boxMensagem button {
    margin-top: 30px;
    background: #2c58fd;
    font-size: 1em;
    padding: 5px 10px;
    border-radius: 3px;
    color: #f7f7f7;
    cursor: pointer;
}


.container h1 {
    padding: 10px;
    margin: 0;
    font-size: .8rem;
    text-align: left;
    color: #FFEDFF;
    transition: ease .5s;
    background: #6300EF;
}

.container .box-break {
    position: relative;    
    padding: 20px 15px;    
    display: flex;
    flex-direction: column;    
    /*background: gold;*/
}

.balanco-suave { /* exibe de forma animada */
    animation: balanco-suave 900ms ease-out forwards;
}
@keyframes balanco-suave {
  0% {
    left: -100%;
    opacity: 0;
  }
  50% {
    left: 0%;
    opacity: 1;
  }
  70% {
    left: -5%;
  }
  100% {
    left: 0%;
  }
}


.recuar {
  animation: balanco-voltar 300ms ease-out forwards;
}
@keyframes balanco-voltar {
  0% {
    left: 0%;
    opacity: 1;
  }
  100% {
    left: -100%;
    opacity: 0;
  }
}



.container .box-break label {
    margin: 5px 0;
    font-size: .9em;
    color: #7D7A7D;
    font-weight: bold;
    text-align: left;    
}

.container .box-break input {
    height: auto;
    /*font-family: 'Digital-7 Mono', sans-serif;*/
    font-family: sans-serif;
    border: none;
    font-size: 1.3em;
    color: #15a0d3;
    background: none;
    outline: none;
    transition: border-color 0.1s ease-in-out, box-shadow 0.1s ease-in-out;    
}

.container .box-break input::placeholder {
    color: gray;
    opacity: .4;
    font-size: .9em;
}

.container .box-break span {
    display: block;
    margin: 5px 0 40px 0;
    transition: ease-in-out 300ms;
    border-bottom: 1px solid #B4B1B4;
}

.container .box-break .efect-neon {
    box-shadow: 0 0 3px 0px #67e0d8;
    border-bottom: 1px solid #3dd3c9;
}

.container .box-break .efect-neon-red {
    box-shadow: 0 0 3px 0px tomato;
    border-bottom: 1px solid tomato;
}

.container .box-break button {
    max-width:  100%;
    border: none;
    padding: 10px 30px;
    margin: 0px auto 30px auto;
    border-radius: 2px;
    color: #FFEDFF;
    font-size: 1em;
    font-weight: bold;
    transition: ease .2s;
    text-transform: uppercase;
    background: #2483D9;
    cursor: pointer;
}

.container .box-break button:hover {
    background: #4200a5;
}


.container .burguer-menu {    
    width: 40px;
    height: 40px;
    position: absolute;
    cursor: pointer;
    top: 0;
    right: 8px;
    /*display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3px;*/    
    /*border: 1px solid tomato;*/
}

.container .burguer-menu span {
    width: 3px;
    height: 3px;    
    margin: 6px 0 0 25px;
    display: block;
    border-radius: 50%;
    background: #ddd;
    transition: all ease-in .3s;
}


.container .burguer-menu #close1 {
    position: relative;
    top: 5px;
    right: 3px;
    margin-top: 0;
    height: 25px;
    border-radius: 5px;
    transform: rotate(45deg);    
}

.container .burguer-menu #close2 {
    position: relative;
    top: -5px;
    left: 0px;
    margin-top: 0;
    opacity: 0;
}

.container .burguer-menu #close3 {
    position: relative;
    top: -23px;
    right: 3px;
    height: 25px;
    margin-top: 0;
    border-radius: 5px;
    transform: rotate(-45deg);
}






/* Ajustes para telas menores */
@media (max-width: 580px) {
    .container {
        width: 100vw;
        min-height: 50vh;
    }
    
    .container h1 {
        font-size: 1.3em;
    }
    
    .container .box-break label {
        font-size: 1.1em;
    }
    
    .container .box-break input {
        font-size: 1.6em;
    }
    
    .container .box-break button {
        font-size: 1.1em;
    }
    
    .container .box-break span {
    display: block;
    margin: 5px 0 40px 0;
    }
    
    .container .boxMensagem {
    min-width: 300px;
    min-height: 180px;
    }
    
    .container .boxMensagem h2 {
        font-size: 1em;
    }
    
    .container .boxMensagem .informations {
        gap: 10px;
    }


    .container .boxMensagem .informations div label,
    .container .boxMensagem .informations div span {
        font-size: 1.2em;
    }
    
    .container .boxMensagem button {
        font-size: 1.1em;
    }
    
    .container .burguer-menu {
        margin-top: 5px;
    }
}
