@font-face {
  font-family: "Pirata";
  src: url("../fonts/PirataOne-Regular.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bitcount Grid Single", system-ui;
  src: url("../fonts/bitcount.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
b,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  overflow-x: hidden;
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  background-color: rgb(178, 218, 245);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
}
body .flex {
  display: flex;
}
body .hidden {
  display: none;
}
body h3 {
  font-family: "Pirata", sans-serif;
  font-size: 30px;
  text-align: center;
  margin-top: 20px;
  max-width: 100%;
  margin-bottom: 50px;
}
body h3 {
  font-family: "Pirata", sans-serif;
  font-size: 30px;
  text-align: left;
  margin-top: 20px;
  max-width: 100%;
  margin-bottom: 50px;
}
body h3:nth-child(2) {
  text-align: center;
}
body .container {
  width: 90%;
  height: auto;
  aspect-ratio: 16/8;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
body .container .titulo-jogo {
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
body .container .titulo-jogo h1 {
  font-size: 40px;
  font-family: "Pirata", sans-serif;
  font-weight: bold;
}
body .container .titulo-jogo img {
  max-width: 100px;
  animation: rotateNavio 1s ease-in-out infinite;
}
@keyframes rotateNavio {
  50% {
    transform: rotate(5deg);
  }
  75% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
body .container .modal {
  max-width: 50%;
  height: auto;
  background: url(../img/papiro.png);
  background-size: contain;
  background-repeat: no-repeat;
  padding: 200px 10px;
}
body .container .modal .titulo-jogo p {
  font-family: "Roboto";
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  max-width: 70%;
}
body .container .modal .titulo-jogo .close {
  background-color: rgb(192, 167, 87);
  font-family: "Roboto", sans-serif;
  border: none;
  border-radius: 10px;
  font-weight: 500;
  padding: 20px;
  position: fixed;
  right: 10%;
  top: 10%;
  cursor: pointer;
}
body .container .modal .titulo-jogo .close::after {
  display: block;
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-left: 28px solid transparent;
  border-right: 28px solid transparent;
  border-bottom: 40px solid rgb(192, 167, 87);
  border-radius: 5px;
  transform: rotate(90deg);
  top: 15%;
  left: 100%;
  animation: continue 1s ease-in-out infinite;
}
@keyframes continue {
  0% {
    left: 100%;
  }
  50% {
    left: 105%;
  }
  0% {
    left: 100%;
  }
}
body .container .container-table {
  width: 100%;
  height: 100%;
}
body .container .container-table .titulo-jogo {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 40px 0;
  justify-content: flex-start;
  align-items: flex-start;
}
body .container .container-table .titulo-jogo h1 {
  margin-top: 20px;
}
body .container .container-table .content {
  width: 100%;
}
body .container .container-table .content .table {
  width: 100%;
  justify-content: space-around;
  gap: 30px;
}
body .container .container-table .content .table #game-board {
  display: grid;
  grid-template-columns: repeat(10, 73px);
  grid-template-rows: repeat(6, 73px);
  border: 1px solid #004d40;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
  background-color: #032288;
  border-radius: 20px;
  overflow: hidden;
}
body .container .container-table .content .table .cell {
  width: 73px;
  height: 73px;
  border: 2px dotted rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  box-sizing: border-box;
  transition: background-color 0.3s;
}
body .container .container-table .content .table .path {
  background-color: #f8f8ff;
}
body .container .container-table .content .table .ship {
  background-color: #ffcccb;
}
body .container .container-table .content .table .treasure {
  background-color: #90ee90;
}
body .container .container-table .content #controls {
  display: flex;
  flex-direction: column;
  width: 50%;
}
body .container .container-table .content #controls .container-controls {
  justify-content: space-between;
  width: 100%;
}
body .container .container-table .content #controls .container-controls .command #card-options {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-top: 70px;
  gap: 10px;
}
body .container .container-table .content #controls .container-controls .command #card-options .movement-card {
  background-color: #ffd700;
  z-index: 2;
  border: none;
  border-radius: 10px;
  width: 100px;
  aspect-ratio: 5/6;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.1s;
  position: relative;
}
body .container .container-table .content #controls .container-controls .command #card-options .movement-card::after {
  display: block;
  position: absolute;
  content: "";
  background-color: #ffd700;
  width: 30px;
  height: 30px;
  bottom: 95%;
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: 0;
  left: 50%;
}
body .container .container-table .content #controls .container-controls .command #card-options .movement-card::before {
  display: block;
  position: absolute;
  content: "";
  background-color: rgb(178, 218, 245);
  width: 30px;
  height: 30px;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
}
body .container .container-table .content #controls .container-controls .command #card-options .movement-card:hover {
  background-color: #ffc72c;
}
body .container .container-table .content #controls .container-controls .command #card-options .movement-card:hover::after {
  background-color: #ffc72c;
}
body .container .container-table .content #controls .container-controls #action-buttons {
  width: 40%;
  align-self: flex-end;
  gap: 20px;
}
body .container .container-table .content #controls .container-controls #action-buttons .run,
body .container .container-table .content #controls .container-controls #action-buttons .stop {
  width: 100%;
  gap: 10px;
}
body .container .container-table .content #controls .container-controls #action-buttons .stop {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body .container .container-table .content #controls .container-controls #action-buttons #run-button {
  width: 100%;
  height: 100%;
  background-color: #008080;
  color: white;
  padding: 10px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s;
}
body .container .container-table .content #controls .container-controls #action-buttons #run-button:hover {
  background-color: #006666;
}
body .container .container-table .content #controls .container-controls #action-buttons #clear-button,
body .container .container-table .content #controls .container-controls #action-buttons #reset-button {
  width: 100%;
  background-color: #e9967a;
  /* Cor de coral/areia */
  color: #333;
  padding: 8px;
  border: 1px solid #cc705b;
  border-radius: 5px;
  cursor: pointer;
}
body .container .container-table .content #controls .container-controls #action-buttons #clear-button:hover,
body .container .container-table .content #controls .container-controls #action-buttons #reset-button:hover {
  background-color: #e08064;
}
body .container .container-table .content #controls .content-sequence {
  width: 100%;
  position: relative;
}
body .container .container-table .content #controls .content-sequence #command-sequence {
  width: 100%;
  height: 100%;
  border: 2px solid #a0522d;
  border-radius: 20px;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  background-color: #365057;
}
body .container .container-table .content #controls .content-sequence #command-sequence .movement-card {
  width: 150px;
  background-color: #ffd700;
  border: 1px solid #0a0802;
  z-index: 2;
  border-radius: 10px;
  max-height: 100px;
  aspect-ratio: 5/6;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.1s;
  position: relative;
}
body .container .container-table .content #controls .content-sequence #command-sequence .movement-card::before {
  display: block;
  position: absolute;
  content: "";
  background-color: blue;
  width: 30px;
  height: 30px;
  bottom: 50%;
  left: -18px;
  transform: translate(-10%, 50%);
  border-radius: 50%;
  z-index: 2;
}
body .container .container-table .content #controls .content-sequence #command-sequence .movement-card:first-child::before {
  content: none;
}
body .container .container-table .content .mini-game-spot {
  background-color: #ffdab9;
  border: 2px solid #a0522d;
}
body .modal-minigame {
  position: absolute;
  top: 50%;
}/*# sourceMappingURL=style.css.map */