.pricing-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  padding: 16px;
  gap: 32px;
  background-color: var(--primary-300);
  z-index: 1;
}

.pricing-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/13334.jpg");
  background-position: center;
  background-size: cover;
  opacity: 4%;
  z-index: -1;
}

.pricing-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 70px;
  width: 100%;
  gap: 20px;
}

.pricing-content h2 {
  font-family: "Taviraj", serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  text-align: center;
  color: var(--primary-50);
}

.pricing-content p {
    max-width: 500px
}

.pricing-content {
  width: 100%;
  font-size: 12px;
  text-align: center;
  line-height: 150%;
  color: var(--dark-400);
}

.pricing-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  align-self: stretch;
}

.pricing-card {
  max-width: 280px;
  list-style: none;
  display: flex;
  padding: 12px;
  flex-direction: column;
  gap: 8px;
  border-radius: 18px;
  background: var(--primary-50);
  border: 2px solid transparent;
  transition: 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--primary-200);
}

.pricing-card .card-image {
  width: 100%;
  height: 170px;
  align-self: stretch;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
}

.pricing-card .card-tipe {
  color: var(--primary-300);
  font-family: Taviraj;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  margin-top: 10px;
  line-height: 120%;
}

.pricing-card .card-price {
  font-size: 12px;
  font-weight: 600;
}

.pricing-card .card-description {
  padding-top: 8px;
  font-size: 12px;
  color: rgb(54, 54, 54);
}

.pricing-card .price-button {
  background-color: var(--primary-300);
  padding: 8px 16px;
  width: fit-content;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--primary-50);
  border-radius: 8px;
  margin: 16px 0 4px;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}

.pricing-link:hover .price-button {
  background-color: var(--primary-200);
}

/* <- screens above 481px (BIGGER CELLPHONES) -> */

@media screen and (min-width: 481px) {
}

/* <- screens above 768px (TABLETS) -> */

@media screen and (min-width: 768px) {
  .pricing-section {
    padding: 32px;
    gap: 32px;
  }

  .pricing-content h2 {
    font-family: "Taviraj", serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 120%;
    text-align: center;
    color: var(--primary-50);
  }
  
  .pricing-content p {
    font-size: 16px;
      max-width: 500px
  }

  .pricing-cards {
    justify-content: center;
    flex-direction: row;
  }

  .pricing-card {
    max-width: 300px;
  }

  .pricing-card .card-image {
    width: 100%;
    height: 200px;
  }
  
  .pricing-card .card-tipe {
    font-size: 16px;
  }
  
  .pricing-card .card-price {
    font-size: 16px;
  }
  
  .pricing-card .card-description {
    padding-top: 8px;
    font-size: 16px;
    
  }
}

/* <- screens above 1024px (SMALL DESKTOP) -> */

@media screen and (min-width: 1024px) {
  .pricing-section {
    padding-right: 138px;
    padding-left: 138px;
    padding-top: 32px;
    padding-bottom: 32px;
    gap: 32px;
  }

  .pricing-cards {
    justify-content: center;
    flex-direction: row;
  }

  .pricing-card {
    max-width: 600px;
  }

  .pricing-card .card-image {
    width: 100%;
    height: 300px;
  }
  
  .pricing-card .card-tipe {
    font-size: 18px;
  }
  
  .pricing-card .card-price {
    font-size: 16px;
  }
  
  .pricing-card .card-description {
    padding-top: 8px;
    font-size: 15px;
  }
}

/* <- screens above 12001px (BIGGER DESKTOP) -> */

@media screen and (min-width: 1201px) {
}

/* <- screens above 1600px (ULTRA-WIDE) -> */

@media screen and (min-width: 1600px) {
}
