html,
body {
  font-family: "Sora", serif;
  background-color: #000000;
  color: #ffffff;
  padding: 0rem;
  margin: 0rem;
}

.flex {
  display: flex;
}

.btn-classes {
  background-color: #ff0000;
  color: #ffffff;
  padding: 5px;
  border-radius: 1.25rem;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 1.25rem;
  border: none;
}

.card-classes {
  width: 15.625rem;
  border-radius: 1.25rem;
}

.btn-classes.selected {
  background-color: #ffffff;
  font-size: 18;
  padding: 2px;
}

.adult-age {
  text-align: center;
  background-color: red;
  font-size: 1.125rem;
  font-weight: bold;
  margin-left: 12.5rem;
  margin-right: 12.5rem;
  border-radius: 0.625rem;
}

.block-classes {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  padding: 0.625rem;
}

.title {
  font-size: 2.5rem;
  font-weight: 800;
}

.title-pulse {
  position: absolute;
  z-index: 1;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: #ff0000;
  animation: pulse 2s infinite;
  transition: 0.3s ease-in-out;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    text-shadow: 0 0 0rem rgba(2255, 60, 60, 0.25);
    font-size: 2.5rem;
  }
  50% {
    text-shadow: 0 0 0.3125rem rgba(255, 60, 60, 0.25),
      0 0 0.625rem rgba(255, 60, 60, 1);
    font-size: 2.55rem;
  }
}

.text {
  font-size: 1.25rem;
  width: 37.5rem;
  margin-bottom: 1.25rem;
  margin-top: 3.75rem;
}

.text-position {
  margin-top: 9.375rem;
  margin-left: 15.625rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 4s ease forwards;
}

.icon {
  width: 1.875rem;
  height: 1.875rem;
  margin-right: 0.625rem;
}

.subtitle {
  font-size: 1.5625rem;
  font-weight: bold;
  margin-bottom: 1.25rem;
  text-align: center;
}

.banner-play {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1.25rem;
}

.block-1 {
  background-image: url(../assets/img-desktop.png);
  height: 70vh;
  border-bottom: 0.0625rem solid rgba(255, 0, 0, 0.5);
  padding: 2rem;
  background-size: cover;
}

.block-video {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 1s ease-out forwards;
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
    margin-bottom: 1rem;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    margin-bottom: 1rem;
  }
}

.video-container {
  position: relative;
  width: 80%;
  max-width: 50rem;
  margin-bottom: 1.25rem;
}

.btn {
  font-weight: bold;
  color: #ffffff;
  background-color: rgb(255, 0, 0, 1);
  padding: 0.9375rem;
  border: none;
  border-radius: 0.625rem;
  margin-bottom: 1.25rem;
  cursor: pointer;
}

.btn-suport {
  font-weight: bold;
  color: #ffffff;
  background-color: rgb(255, 0, 0, 1);
  padding: 0.9375rem;
  border: none;
  border-radius: 0.625rem;
  cursor: pointer;
}

video {
  width: 100%;
  border: 2px solid rgb(255, 0, 30);
  border-radius: 10px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 0, 0, 1);
  border: none;
  border-radius: 50%;
  width: 5rem;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.play-button:hover {
  background-color: rgb(247, 73, 73);
}

.play-icon {
  width: 0;
  height: 0;
  border-left: 1.25rem solid white;
  border-top: 0.625rem solid transparent;
  border-bottom: 0.625rem solid transparent;
}

.play-button.hidden {
  display: none;
}

.img-mobile {
  display: none;
}

@media (max-width: 1400px) {
  .block-1 {
    background-image: url(../assets/img-desktop.png);
    background-position: 60% top;
    height: 60vh;
    border-bottom: 1px solid rgba(255, 0, 0, 0.5);
    padding: 2rem;
  }

  .text-position {
    margin-top: 150px;
    margin-left: 150px;
  }
  .card-classes {
    width: 200px;
    border-radius: 1.25rem;
  }
}

@media (max-width: 850px) {
  html,
  body {
    font-family: "Sora", serif;
    background-color: #000000;
    color: #ffffff;
    padding: 0rem;
    margin: 0rem;
  }
  .img-mobile {
    display: block;
    height: 55vh;
    width: 100%;
  }

  .flex {
    display: flex;
  }

  .adult-age {
    text-align: center;
    background-color: red;
    font-size: 14px;
    font-weight: bold;
    margin-left: 1rem;
    margin-right: 1rem;
    border-radius: 0.625rem;
    margin-bottom: 0.5rem;
    padding: 0.1rem;
  }

  .title {
    font-size: 1.5625rem;
    font-weight: 800;
  }

  .title-pulse {
    position: relative;
    font-size: 1.5625rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    color: #ff0000;
    animation: pulse 1s infinite alternate;
    transition: 0.3s ease-in-out;
    text-align: center;
  }
  .center {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  @keyframes pulse {
    from {
      text-shadow: 0 0 5px #fc7272, 0 0 10px #fc7272, 0 0 20px #fc7272,
        0 0 40px #fc7272;
      text-align: center;
    }
    to {
      text-shadow: 0 0 5px #fc7272, 0 0 10px #fc7272, 0 0 30px #fc7272,
        0 0 40px #fc7272;
      text-align: center;
    }
  }
  .text {
    font-size: 1rem;
    width: 100%;
    margin-bottom: 1.25rem;
    margin-top: 1.125rem;
    text-align: center;
  }

  .text-position {
    margin-top: 0rem;
    margin-left: 0rem;
    text-align: center;
  }

  .block-1 {
    background-image: none;
    height: 100%;
    border-bottom: 1px solid rgba(255, 0, 0, 0.5);
    padding: 1rem;
  }

  .block-video {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 1s ease-out forwards;
  }

  .subtitle {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 0.9375rem;
    text-align: center;
  }

  .icon {
    width: 1.5625rem;
    height: 1.5625rem;
    margin-right: 0.625rem;
  }

  .video-container {
    position: relative;
    width: 90%;
    max-width: 50rem;
    margin-bottom: 1.25rem;
  }

  .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 0, 0, 1);
    border: none;
    border-radius: 50%;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .btn-classes {
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: bold;
    margin-bottom: 1.25rem;
  }

  .card-classes {
    width: 150px;
    border-radius: 1.25rem;
  }

  .btn-classes.selected {
    font-size: 0.875rem;
    color: #ff0000;
  }

  .block-classes {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 0 auto;
    max-width: 400px;
  }
}

@media (max-width: 700px) {
  .block-classes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin: 0 auto;
    max-width: 400px;
  }
  .card-classes {
    width: 8.75rem;
    border-radius: 1.25rem;
  }
}
