

    .pricing-container {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      gap: 20px;
      margin: 0px auto 50px auto;
      max-width: 1600px;
      padding: 20px;
    }

    .price-card {
      border: 2px solid #ccc;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      padding: 20px;
      width: 650px;
      text-align: center;
      min-height: 400px;
    }

    #btn-price{
        max-width: 500px;
    }

    .btn-new-price{
          font-size: .9em;
        letter-spacing: 2px;
        border-radius: var(--esquina);
        text-transform: uppercase;
        padding: 10px 20px;
        width: 100%;
        min-width: 50px;
        position: relative;
        font-weight: 800;
        background-color: var(--azul);
        color: var(--negro);
        border: var(--borde-negro);
        line-height: 1.2
    }

    .btn-new-price::before {
  border-radius: var(--esquina);
  border: inherit;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: calc(-1 * var(--sombra-distancia));
  left: calc(-1 * var(--sombra-distancia));
  z-index: -1
}

.btn-new-price:hover {
  background-color: var(--azul-medio);
  color: var(--blanco);
  border: var(--borde-negro)
}

 

a:has(.btn-new-price)+p button {
  letter-spacing: var(--distancia-letras);
  font-family: "Urbanist";
  font-weight: 700;
  margin: 20px 15px
}

    .price-card .badge {
      background: #98c93e;
      color: #ffffff;
      font-weight: bold;
      font-size: 14px;
      padding: 5px 10px;
      border-radius: 5px;
      margin-bottom: 15px;
      display: inline-block;
    }

    .price-card h2 {
      font-size: 30px;
      margin: 10px 0 0 0;
    }
    .sub-tit{
        font-weight: 100;
        font-size: 14px;
        color: #7f7f7f;
    }

    .price-card h4 {
      font-size: 14px;
      margin: 25px 0 0 0;
    }

    .price-card .price {
      font-size: 40px;
      font-weight: bold;
      color: #2a2a2a;
      margin: 5px 3rem;
    }

    .price-card .subtext {
      font-size: 14px;
      color: #7f7f7f;
    }

    .price-card .button-group {
      margin-top: 20px;
    }

    .price-card .btn {
      text-decoration: none;
      font-weight: bold;
      padding: 10px;
      margin: 10px 0;
    }
    
    .price-card .btn .line-1{
        font-size: 12px;
        
     }
    .price-card .btn .line-2{
        font-size: 9px;
    }

    .price-card .btn .line-2 span, .price-card .btn .line-1 span{
        color: #2a2a2a;
    }

    .price-card .btn-alt {
      background: #e6adec;
    }

    .price-card .btn-alt:hover, .price-card .btn:hover {
      background: #fff;
      color: #2a2a2a;
    }

    .price-footer {
        font-size: 12px;
        margin-top: 0.5rem;

    }

    .price-footer-c1{
        margin-top: 4.8rem;
    }

    
@media screen and (max-width:1300px) and (min-width: 1101px) {
    .pricing-container {
      width: 1100px;
    }

    .price-card {
      border: 2px solid #ccc;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      padding: 20px;
      width: 300px;
      text-align: center;
      min-height: 500px;
    }   

    .price-card .btn .line-1{
        font-size: 10px;
        
     }
    .price-card .btn .line-2{
        font-size: 8px;
    }
        .price-footer-c1{
        margin-top: 7rem;
    }

}

@media screen and (max-width:1100px) {
    .pricing-container {
      width: 800px;
      flex-wrap: wrap;
    }

    .price-card {
      width: 350px;
    }   

    .price-card .btn .line-1{
        font-size: 10px;
        
     }
    .price-card .btn .line-2{
        font-size: 8px;
    }
        .price-footer-c1{
        margin-top: 7rem;
    }

}

@media screen and (max-width:600px) {
    .pricing-container {
      width: 800px;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .price-card {
      width: 350px;
    }   

    .price-card .btn .line-1{
        font-size: 10px;
        
     }
    .price-card .btn .line-2{
        font-size: 8px;
    }
        .price-footer-c1{
        margin-top: 5rem;
    }

}