@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Prosto+One&display=swap');
@font-face {
  font-family: 'FonteLogo';
  src: url("../fonte/ProstoOne-Regular.ttf");
}

body {
  font-family: Arial, sans-serif;
  background-color: #202021;
  color: #ffd700;
  text-align: center;
  padding: 1vw;
  transition: .5s;
}

/* HEADER */

.cabecalho {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    border-bottom: 2px solid #333;
    height: 10vh;
    background-color: #202021;
    box-shadow: 0px 0px 10px rgba(0,0,0,.5);
    transition: .5s;
}

.logo-site-1 {
  display: flex;
  align-items: center;
}

.logo {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.titulo {
  font-family: 'FonteLogo';
  font-size: 24px;
  margin: 0;
  transition: 0.3s ease;
  cursor: pointer;
}

.titulo:hover {
  color: rgb(251, 255, 3);
  transition: 0.3s ease;
  text-shadow: 0 0 8px rgb(251, 255, 3);
}


/* MENU */

.menu ul {
  list-style: none;
  display: flex;
  padding: 10px;
  margin: 2px;
  gap: 25px;
}

.menu li {
  position: relative;
  font-weight: bold;
}

.menu a {
  font-family: 'FonteLogo';
  text-decoration: none;
  color: yellow;
  transition: 0.3s ease;
  position: relative;
}

.menu a:hover {
  color: #ff0000;
  text-shadow: 0 0 8px #ff0000;
}

/* CALCULADORA */

.calculadora {
  width: 600px;
  margin: 60px auto;
  padding: 25px;
  background: #545353;
  border-radius: 12px;
}


.calculadora h2 {
  text-align: center;
  color: #ffcc00;
  font-size: 40px;
  margin-bottom: 25px;
  transition: 0.3s ease;
}

.calculadora h2:hover {
  text-align: center;
  font-size: 40px;
  margin-bottom: 25px;
  transition: 0.3s ease;
  color: #59ff00;
  text-shadow: 0 0 8px #59ff00;
}

.calculadora label {
  font-weight: bold;
  margin-right: 140px;
  color: #e0dddd;
}

.calculadora select,
.calculadora input {
  padding: 10px 14px;
  margin: 10px;
  border: 1px solid #bbb;
  border-radius: 6px;
  font-size: 17px;
  width: 220px;
  transition: border-color 0.2s ease;
  text-align: center;
}

.calculadora button {
  display: block;
  background: #ffcc00;
  color: #111;
  border: none;
  padding: 12px 20px;
  margin: 20px auto 0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  transition: 0.3s ease;
}

.calculadora button:hover {
  font-size: 23px;
  margin-bottom: 25px;
  transition: 0.3s ease;
  color: #59ff00;
  text-shadow: 0 0 8px #59ff00;
}

#resultado {
  margin-top: 25px;
  font-size: 1.3rem;
  text-align: center;
  font-weight: bold;
  color: #f1e702;
  text-shadow: 0 0 8px rgb(0, 0, 0);
}

/* RODAPE */

.rodape {
  text-align: center;
  font-style: italic;
  color: #f1e702;
  background-color: #202021;
  margin: 30px 0px -30px 0;
  padding: 20px;
  border-bottom: 0px 0px 0px 2px solid;
  box-shadow: 0px 0px 0px 2px rgba(59, 58, 58, 0.8);
  transition: .5s;
}

.cor-rodape {
  color: #f1e702;
  text-decoration: none;
  transition: 0.3s ease;
}

.cor-rodape:hover{
  color: #ff0000;
  transition: 0.3s ease;
  text-shadow: 0 0 8px #ff0000;
  text-decoration: none;
}
