.logo {
  z-index: 99;  
  position: relative;
  top: 35px;
  left: 35px;
}

.header {
  height: 90px;
}

.path-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 400px;
  overflow-x: hidden;  
  z-index: -2;
}

.path-right {
  position: absolute;
  top: -110px;
  right: -100px;
  z-index: -2;
}

.circle {
  position: absolute;  
  top: 70px;
  right: 80px;
  width: 141px;
  height: 141px;
  background-color: rgba(109, 212, 253, 0.30);
  z-index: -1;
  border-radius: 50%;
}

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

.oops {
  width: 100%;
  text-align: center;
  color: #007FFF;
  font-weight: 700;
  font-size: clamp(26px, 3vw, 35px); 
}

.erro-404 {
  width: clamp(300px, 50vw, 700px);
  height: clamp(70px, 40vh, 362px);
  object-fit: contain;  
  
  /* object-fit: contain; */
  /* object-fit: scale-down; */
}

.message-container {
  padding-top: 30px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.message {
  width: 80%;
  text-align: center;  
  font-weight: 600;
  font-size: clamp(15px, 1.5vw, 48px); 
}

.button-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  width: 100%;
}

.button {  
  z-index: 10;  
  border-radius: 8px;
  font-size: 20px;
  text-decoration: none;
  text-align: center;
  width: 210px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blue {
  background-color: #00A2E3;
  color: white;
  font-weight: 300;
}

.blue:hover {
  opacity: 0.8;
  color: #00A2E3;
  box-sizing: border-box;
  background-color: white;
  border: 1px solid #00A2E3;
  font-weight: 500;
  transition: 0.3s;
}

.blue:not(:hover) {
  transition: 0.3s;
}
.white {
  box-sizing: border-box;
  border: 1px solid #00A2E3;
  background-color: white;
  color: #00A2E3;
  font-weight: 500;
}

.white:hover {
  background-color: #00A2E3;
  color: white;
  transition: 0.3s;
}

.white:not(:hover) {
  transition: 0.3s;
}

.footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  overflow-y: hidden;
}

.circle-bottom {
  position: relative;
  left: -210px;
  bottom: -30px;
  width: 355px;
  height: 355px;
  background-color: rgba(109, 212, 253, 0.30);
  z-index: -1;
  border-radius: 50%;
}

@media (max-width: 768px) {

  .button-row {
    flex-direction: column;
    gap: 5px;    
  }

  .button {
    width: 80%;
  }

  .message {
    padding-top: 0;
  }

  .erro-404 {
    height: 200px;
  }
}