
.tickets-page .ticket-item {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease, box-shadow 0.3s ease;
    background-color: #4e0101;
    background: rgba(0, 0, 0, 0.192) url(/assets/images/plano-bg.png) center/cover no-repeat;
    background-blend-mode: overlay;
    padding: 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    height: 100%;
  }
  
  
  /* Títulos */
  .tickets-page .ticket-item h4 {
    font-size: 20px;
    margin-top: 20px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
  }
  
  /* Estilização da área de Preço */
  .tickets-page .ticket-item .price {
    color: #fff;
    font-weight: 700;
    padding: 30px 10px;
    display: inline-block;
  }
  
  .tickets-page .ticket-item .price em {
    font-size: 55px;
  }
  
  .tickets-page .ticket-item .price #reais, #validade {
    font-size: 15px;
  }