@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');


@font-face {
  font-style: bold;
  font-family:"makeaduo";
  src: local('MakeaDuo-Bold'), local('MakeaDuo-Bold'), url("font/OpenType-PS/MakeaDuo-Bold.otf") format("opentype"), url("font/OpenType-TT/MakeaDuo-Bold.ttf") format("truetype");
}



*{
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
  text-decoration: none;
  text-decoration-color: none;
}

html, body {
  overflow-x: hidden !important;
 }

 body {
    background-color: rgb(0, 0, 0);
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 1em;
    font-weight: 400;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    border: #ffffff;
    overflow-x: hidden !important;
  
  }

  #background{
    top: 0;
    left: 0;
    background-position: 0 0, center;
  }

  /*animação do background (estilo céu)*/
  .containerceu {
    position: relative;
    width: 100%;
    height: 100%;
}

.dot {
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: white;
    border-radius: 50%;
    animation: glow 2s infinite;
}

@keyframes glow {
    0%, 100% {
        opacity: 0.5;
        box-shadow: 0 0 5px white;
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 20px white;
    }
}
  

  /*texts*/

  h1 {
    font-size: 30px;
    padding: 20px;
    text-align: center;
    font-family: "makeaduo","Montserrat", sans-serif;
    }
         
  h2{
      padding:20px auto;
      margin:30px;
      text-align: center;
      font-size: 16px;
      font-family: "Montserrat", sans-serif;
  }
  
  p{
      padding:10px auto;
      margin: auto;
      font-size: 16px;
      text-align: center;
      width:70%;
      Line-height:1.7em;  
  }

  .textleft{
    text-align: justify;
    width:50%;
  }

  /* botão normal*/

  button {
    background-color: #252525;
    color:rgb(226, 226, 226);
    border: 5px solid linear-gradient(to right, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8 ); /* Gradiente */ /* Largura e estilo da borda */
    margin: 10px;
    padding: 12px;
    justify-content: left;
    flex-direction: row;
    align-items: center;
    display: flex;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    gap:10px;
    text-align: left;
    height:50px;
    }

  button:hover {
      background-color: rgb(226, 226, 226) !important;
      color:  #252525;
  }

  /* botão precisa de login*/

    #button:hover:after {
      content: "Precisa de login";
      font-size: 12px;
      color: #7a00ff;
      position: absolute;
      text-align: center;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

.excluir{
  background-color: rgb(191, 36, 36) !important;
  color:  rgb(226, 226, 226);
}

.excluir:hover {
  background-color: rgb(226, 226, 226) !important;
  color:  #bf2424;
}

.duplicar{
  background-color: #8E5EBD !important;
  color:  rgb(226, 226, 226);
}

.duplicar:hover {
  background-color: rgb(226, 226, 226) !important;
  color:   #8E5EBD;
}

.baixar{
  background-color: rgb(226, 226, 226)!important;
  color:  #252525;
}

.baixar:hover {
  background-color: #252525 !important;
  color:  rgb(226, 226, 226);
}

/* botão colorido */

.glow-on-hover {
  width: 260px;
  height: 80px;
  outline: none;
  color:  #252525;
  border: 2px solid; /* Largura e estilo da borda */
  background:  #252525;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
}

.glow-on-hover:before {
  content: '';
  background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
  position: absolute;
  top: -2px;
  left:-2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(10px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing 20s linear infinite;
  opacity: 0;
  transition: opacity .3s ease-in-out;
  border-radius: 10px;
}

.glow-on-hover:active {
  color: rgb(226, 226, 226);
}

.glow-on-hover:active:after {
  background: transparent;
}

.glow-on-hover:hover:before {
  opacity: 1;
}

.glow-on-hover:after {
  z-index: -1;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(226, 226, 226);
  left: 0;
  top: 0;
  border-radius: 10px;
}

@keyframes glowing {
  0% { background-position: 0 0; }
  50% { background-position: 400% 0; }
  100% { background-position: 0 0; }
}


  /* grids */

.grid{
  display: flex;
  flex-direction: row;
  justify-content:center;
  flex-wrap: wrap;
  width: 100%;
}

.grid2{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content:center;
  flex-wrap: wrap;
  width: 30%;
  gap: 10px;
}

.container {
  width: 100%;
  height: 100%;
  margin: 20px auto;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  display: flex;
  gap:10px;

}


#calculatorDuo, form{
  width: 100%;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  display: flex;
  gap:10px;
}

.container2{
  width: 100%;
  height: 100%;
  margin: 20px auto;
  flex-direction: row;
  align-items:center;
  justify-content:center;
  display: flex;
  gap:5px;
  flex-wrap: wrap;

}

textarea {
  margin: 10px;
  padding: 20px;
  border-color:  #252525;
  width: 80%;
  height: 200px;
}

#demo{
  width: 200px;
  padding: 10px;
  margin: 20px auto;
  border: 2px solid #ffffff;
  border-radius: 5px;
}

#cmykOutput{
  width: 80%;
}

.color-preview {
  width: 150px;
  height: 150px;
  margin: 20px auto;
  border: 2px solid #ffffff;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: white;
  text-shadow: 1px 1px 2px black;
}


#editortext {
  margin: 10px;
  padding: 30px;
  color:#252525;
  background-color: white;
  border-color:  #252525;
  width: 80%;
  height: 500px;
  border-radius: 10px;
  overflow-y: auto; /* Habilita a barra de rolagem vertical */
  border: 1px solid #ccc; /* Opcional: adicione uma borda */
  box-sizing: border-box; /* Inclui o padding dentro do tamanho definido */
}

input{
  width: 300px;
  height: 50px;
  margin: 0 auto;
  padding: 0 10px;
  border-radius: 5px;

  
}

select{
  padding: 14px;
  border-radius: 5px;
}

.icon{
  padding:10px;
}

section{
  text-align: left;
  margin:20px auto;
  align-items:center;
  justify-content:flex-start;
  display: flex;
}

canvas {
  border: 1px solid rgb(226, 226, 226);
  max-width: 90%; /* Mantém o canvas dentro do container */
  height: auto; /* Preserva a proporção */
  display: block; /* Centraliza visualmente */
  margin: 0 auto; /* Centraliza na página */
}


.border, #zCalcRep{
  border:1px solid #b477f0;
  border-radius: 5px;
  padding: 10px;
  width: 350px;

}

.border-purple{
  border:1px solid #B477F0;
  color:#B477F0;
  width: 350px;
}

#formatSelect, #yearSel, #monthSel, #daySel, #dificuldade, #comissao, #resizeOption, #widthUnit, #heightUnit{
 border-radius: 5px;
 padding: 15px;
 margin:5px;
 min-height: 50px;
 background-color:#252525;
 color: rgb(226, 226, 226);
}

.personalizar-option{
  background: rgb(226, 226, 226);
  color: #252525;
}  
.personalizar-option:hover{
  background: rgb(226, 226, 226);
  color: #252525;
}

#form{
  border:1px solid rgb(226, 226, 226);
  width: 90%;
}



/*menu*/

.nav-button{
margin:10px auto;
cursor: pointer;
position: fixed;
top: 25px;
right: 25px;
color: #ffffff;
table-layout: fixed;
z-index: 2;

}


.overlay {
height:100%;
width:0%;
background-color: rgba(0, 0, 0, 0.932);
z-index:3;
position: fixed;
left: 0;
top: 0;
overflow: hidden;
transition: all 0.5s;

}


.overlay-content{
position: relative;
margin: 10px auto;
top: 25%;
width: 100%;
text-align: center;
font-size: 1em;
}

.overlay a {
padding: 8px;
text-decoration: none;
color: rgb(255, 255, 255);
display: block;
font-size: 1.5em;
transition:0.3s;
}

.overlay a:hover, .overlay a:focus {
color: #464544;
}

.overlay .closebtn {
position: absolute;
top: 15px;
right: 20px;
font-size: 60px;
}

/*terminou menu*/


@media (max-width: 1024px) {

  input{
    width: 80%;
   
  }
  .overlay-content{
    margin: 0 40px;
    text-align: left;
    font-size: 0.8em;
    }

  .textleft{
    width: 80%;
  }

 
}

/*paleta de cor*/
label {
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}
input[type="color"] {
  border-radius: 5px;
  padding: 5px;
  height: 50px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

/*ícones separados botões*/
.icon{
padding:0 0 0 16px;
}

#resultado2{
  width: 100%;
  height: 50px;
  text-align: center;
  border: solid 1px white;
}

.seletor{
padding: 10px;
border-radius: 5px;
color:#252525;
}

/* tabela*/

#tabela{
  overflow-x: auto;
}

table {
  margin: auto;
  border-radius: 20px;
}

th{
  border: 1px solid white;
  background-color: #252525;

}

 td {
  background-color:white; color:black;
  vertical-align: top;
}

th, td {
  padding: 15px;
  max-width: 300px;
  min-width: 120px;
  border-radius: 5px;
}

.bold{
  font-weight: 600;
}
