@import url('../fonts/fonts.css');

body,
html {
  font-family: 'Montserrat', sans-serif;

  scroll-behavior: smooth;

  background-color: var(--color-white);

  color: var(--color-black);
}

* {
  margin: 0;
  padding: 0;
  outline: none;
}

a {
  text-decoration: none;

  color: initial;

  cursor: pointer;
}

:root {
  --color-primary: #fa6400;
  --color-white: #ffffff;
  --color-gray: #343a40;
  --color-gray-ligth: #e0e0e0;
  --color-black: #1a1a1a;
  --color-blue-light: #e6edf2;
}

button#delete {
  color: red;

  position: relative;
}

button#delete::before {
  content: 'Essa ação não pode ser desfeita!';

  left: 20em;
  top: -0.55em;

  background-color: rgba(255, 255, 0, 0.25);
  color: var(--color-black);

  font-weight: 600;
  text-align: center;

  padding: 1em;

  border-radius: 0.5em;

  position: absolute;

  display: flex;
  justify-content: center;
  align-items: centers;

  width: 20em;
  height: 1.5em;

  opacity: 0;
  transition: 0.5s all;
}

button#delete:hover::before {
  opacity: 1;

  left: 10.5em;
}

.messageSuccess,
.messageError {
  background-color: rgba(255, 230, 0, 0.6);
  color: var(--color-black);

  padding: 1em;

  border-radius: 0.25em;

  width: 100%;

  display: none;
  align-items: center;
  justify-content: center;
}

.messageSuccess {
  background-color: aquamarine;
}

.maintenance {
  margin: 0.5em;

  font-size: 150%;

  border-radius: 2em;

  height: 97%;

  flex: 1;

  background-color: var(--color-black);

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.maintenance img {
  margin-top: 1em;
  margin-bottom: 1.5em;

  width: 15em;
}

.maintenance a {
  color: var(--color-primary);
}

footer {
  display: flex;
  flex-direction: column;

  width: 100%;

  color: var(--color-white);
  background-color: var(--color-black);
}

footer > div:first-child {
  padding-top: 2em;
}

footer > div {
  display: flex;
  align-items: center;
  justify-content: center;
}

footer div img {
  width: 10em;
}

footer div > h4 {
  margin-top: 1.5em;
}

footer div div p {
  display: flex;
  align-items: center;

  margin: 0.5em 0;
}

footer .footer_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 1em 10em;
}

footer .footer_bottom div {
  width: 50%;
}

footer .footer_bottom div > a img {
  width: 1.8em;

  margin: 0 0.5em;
}

footer .footer_bottom span,
footer .footer_bottom div {
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .footer_bottom span {
  font-size: 80%;
}

footer .footer_bottom div > a {
  cursor: pointer;
}

footer .footer_bottom div > a {
  margin-left: 0.5em;
}
@media (max-width: 700px) {
  footer {
    font-size: 70%;
  }

  footer div {
    padding: 2em 0em;
  }
}
