.cover {
  .cover__background {
    height: 50vh;

    &::before {
      background: rgba(0, 0, 0, 0.75);
      opacity: .5;
      z-index: 0;
    }
  }

  .container {
    z-index: 1;
  }

  .content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;

    .description {
      .title {
        font-size: 3rem;
        font-weight: 600;
        font-family: 'Poppins', sans-serif;
      }

      p {
        display: flex;
        align-items: center;
        gap: 1rem;
        font-size: 1.25rem;

        a {
          font-weight: 700;
          text-decoration: none;
          color: #3AAFFF;
        }
      }
    }

    img {
      width: 100%;
      border-radius: 2rem;
      box-shadow: 0 2px 11px 0 rgba(0, 0, 0, 0.33);
    }
  }
}

#contact {
  display: none;
}

html {
  height: 100%;
  min-height: 100vh;
  position: relative;
}

#events-payment {
  .container {
    margin-top: 8rem;

    p {
      margin-left: 1rem;
      margin-bottom: 2rem;

      a {
        color: var(--purple-main) !important;
        text-decoration: none;
        border-bottom: 1px solid var(--purple-main);
      }
    }

    .content {
      justify-content: space-between;
      color: white;
      background-color: var(--purple-main);
      border-radius: 2.5rem;
      padding: 4rem !important;

      h1 {
        margin: 0;
      }

      .details {
        flex: 3;
        margin-bottom: 2rem;

        button {
          background-color: white;
          color: var(--purple-main);
          border: 1px solid white;
        }
      }

      .image {
        flex: 2;

        img {
          width: 100%;
          max-height: 550px;
          object-fit: cover;
          height: auto;
          border-radius: 2.5rem;
          box-shadow: 0 2px 11px 0 rgba(0, 0, 0, 0.33);
        }
      }

      @media (max-width: 820px) {
        &.content {
          display: flex;
          flex-direction: column;
          align-items: start;
          gap: 2rem;

          .details {
            flex: 1;
            width: 100%;

            button {
              width: 100%;
              display: flex;
              align-items: center;
              justify-content: center;
              font-weight: 600;
              font-size: 1.25rem;
            }
          }

          .image {
            flex: 1;
          }
        }
      }
    }
  }
}

#event {
  --gray: #4C576C;

  .content {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 8rem;
    align-items: anchor-center;

    p {
      margin: 0;
    }

    .ticket {
      display: grid;
      gap: 1rem;
      background-color: white;
      border: 1px solid #D6D8DB;
      border-radius: .75rem;
      padding: .75rem 1rem;
      min-width: 19rem;

      p {
        margin: 0;
      }

      i {
        margin-top: 6px;
      }

      .price {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        color: var(--gray);

        .price__conditions {
          color: var(--purple-main);
          font-size: .85rem;
          font-weight: 600;
        }
      }

      button {
        border-radius: .5rem;
        padding-block: 1rem;
        width: 100%;
      }
    }
  }
}