*,
*::before,
*::after {
  box-sizing: inherit;
  box-sizing: border-box;
  scrollbar-color: #4ca5af transparent;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
  font-family: Arial, Helvetica, sans-serif;
  color: black;
  margin: 0;
  padding: 0;
  height: 100dvh;
  max-height: 100vh;
  overflow: auto; /* ou scroll */
  overflow: hidden;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE e Edge */
}

body {
  width: 100%;
  height: 100%;
  height: 100dvh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  box-sizing: border-box;
  background:
    linear-gradient(rgba(5, 10, 10, 0.02), rgba(5, 10, 10, 0.04)),
    url("../imagens/soccer.jpg");
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  min-height: var(--altura-tela, 100dvh);
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
}


.body {
  box-sizing: border-box;
  background:
    linear-gradient(rgba(266, 266, 266, 0.4)),
    url("../Imagens/fundo_sup/designer-azul.png") no-repeat;
}

.Escondido {
  display: none !important;
}

.btt_Padrão {
  background: linear-gradient(180deg, #59b4bd 0%, #4ca5af 55%, #3f919a 100%);
  color: white;
  margin-top: 0.5rem;
  padding: 1.2dvh 2dvw;
  border: 0.15rem solid #3d8e97;
  border-bottom: 0.35rem solid #347b83;
  border-radius: 1.5dvh;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  width: 75dvw;
  box-shadow:
    0 0.5dvh 0.8dvh rgba(0, 0, 0, 0.18),
    inset 0 0.15dvh 0 rgba(255, 255, 255, 0.25);
  transition:
    background 0.25s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.btt_Padrão_Red {
  background: linear-gradient(180deg, #eb7c51 0%, #e76a38 55%, #e9632d 100%);
  border: 0.15rem solid #f3652d;
  border-bottom: 0.35rem solid #f3652d;
}

.btt_Gestao {
  background: rgba(255, 0, 0, 0);
  font-size: 5rem;
}

.SecaoPrincipal {
  grid-auto-rows: 84dvh 14dvh;
}

h1 {
  margin: 0;
}

h2 {
  color: rgb(255 255 255);
  text-shadow: 0 0.4dvh 0.8dvh rgba(228, 212, 212, 0.7);
  margin: 0;
  margin-bottom: 1dvh;
  font-size: 4rem;
}

h3 {
  font-size: 2rem;
  margin: 0;
  color: rgb(1, 18, 34);
}

h4 {
  color: rgb(255 255 255);
  font-size: 2rem;
  margin: 2%;
}

a {
  cursor: pointer;
  margin-bottom: 0.2dvh;
}

b {
  font-size: 1.4rem;
}

.success-btn {
  background-color: #4caf50;
  color: white;
}

.error-btn {
  background-color: #f44336;
  color: white;
}

.warning-btn {
  background-color: #ff9800;
  color: white;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;

  & h2 {
    margin: 0;
  }

  & p {
    font-size: 1.8rem;
  }
}

.icon {
  margin-bottom: 2dvh;
  font-size: 2rem;
}

.popup {
  background: white;
  padding: 3dvh;
  border-radius: 2dvh;
  text-align: center;
  width: 80dvw;
  max-width: 350px;
  box-shadow: 0 0 4dvh rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.3s ease-in-out;
}

.popup button {
  background-color: #6a1b9a;
  color: white;
  padding: 1.4dvh 2dvh;
  border: none;
  border-radius: 1.4dvh;
  font-size: 1.4rem;
  cursor: pointer;
  margin-left: 1dvh;
  margin-right: 1dvh;
}

.popup button:hover {
  background-color: #8e24aa;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.overlay_Obs {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.popup_Obs {
  display: grid;
  grid-template-rows: 90% 10%;
  background: white;
  padding: 2dvh;
  border-radius: 10px;
  text-align: center;
  width: 80dvw;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.3s ease-in-out;
  height: 80dvh;
}

.dots {
  display: flex;
  gap: 8px;
  width: 100dvw;
  height: 100dvh;
  align-content: center;
  align-items: center;
  justify-content: center;
  position: absolute;
  background-color: rgb(246, 246, 246, 30%);
  top: 0;
  left: 0;
  z-index: 9999999999;
}

.dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: black;
  opacity: 0.2;
  animation: jump 0.6s var(--delay) linear infinite;
}

.dots_flex {
  display: flex;
  gap: 8px;
  height: 100%;
  align-content: center;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.dots_Ger {
  display: grid;
  gap: 2dvh;
  align-items: center;
  justify-items: center;
}

.dot:nth-child(1) {
  --delay: 0ms;
}

.dot:nth-child(2) {
  --delay: 100ms;
}

.dot:nth-child(3) {
  --delay: 200ms;
}

@keyframes jump {
  0% {
    opacity: 0.4;
    transform: translateY(0px);
  }

  33% {
    opacity: 0.8;
    transform: translateY(-9px);
  }

  66% {
    opacity: 0.4;
    transform: translateY(0px);
  }
}

#AreaFantasmaCompartilhar {
  position: fixed;
  left: -10000px;
  top: 0;

  width: 1080px;
  min-width: 1080px;
  max-width: 1080px;

  height: auto;
  overflow: visible;

  background: #102b2c;
  color: #fff;

  pointer-events: none;
  z-index: -99999;
}

#AreaFantasmaCompartilhar,
#AreaFantasmaCompartilhar *,
#AreaFantasmaCompartilhar *::before,
#AreaFantasmaCompartilhar *::after {
  box-sizing: border-box;
}
