body {
  background: #f3f7f9;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card {
  border-radius: 24px;
  padding: 65px 85px;
  background: white;
  width: 100%;
  max-width: 1366px;
  margin-inline: auto;
  position: relative;
}

.card-shadow {
  border: 1px solid #1636440d;
  box-shadow: 0px 8px 16px 0px #1965941a;
  background: #ffffff80;
  padding: 62px 52px;
  border-radius: 24px;
  flex-basis: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url("./assets/blue-shadow.svg");
  background-position-x: 110px;
  background-position-y: -20px;
  background-size: 400px;
  background-repeat: no-repeat;
}

.header-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.footnote {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: rgba(255, 171, 0, 0.16);
  color: rgb(183, 110, 0);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.footnote svg {
  width: 16px;
  stroke: rgb(183, 110, 0);
}

h1 {
  font-size: 40px;
  font-weight: 700;
  color: #196594;
}

h6 {
  font-size: 20px;
  font-weight: 400;
  color: #454f5b;
}

main {
  display: flex;
  align-items: stretch;
  gap: 50px;
  margin-top: 40px;
}

.pc {
  width: 330px;
  position: relative;
}

.pc img {
  width: 100%;
  max-width: 100%;
}

.badge {
  top: -23px;
  right: -30px;
  border-radius: 100px 50px 50px 0px;
  background: #d8e6fa;
  color: #196594;
  font-size: 12px;
  font-style: italic;
  font-weight: 700;
  padding: 6px 12px;
  position: absolute;
}

.start {
  margin-top: 50px;
  align-self: flex-start;
}

h5 {
  font-size: 24px;
  font-weight: 700;
  color: #196594;
}

p {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 400;
  color: #454f5b;
}

.button-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 16px;
}

.button-container-atendente {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
}

button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  width: fit-content;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}

button.filled {
  border: 1px solid #196594;
  background: #196594;
  color: white;
}

button.outlined {
  border: 1px solid #196594;
  background-color: white;
  color: #196594;
}

button.pulse:hover {
  animation: pulse 1.5s ease-in-out infinite;
}

@media only screen and (max-width: 1024px) {
  body {
    height: auto;
  }

  h1 {
    font-size: 32px;
  }

  h6 {
    font-size: 16px;
  }

  .header-container img {
    width: 125px;
  }

  main {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
  }
  .card-shadow {
    padding: 36px;
    background-position: center -30%;
  }

  .card {
    padding: 2rem;
    border-radius: 0px;
    max-width: none;
    margin: 0;
  }

  .pc {
    width: 275px;
  }
}

@media only screen and (max-width: 768px) {
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
