/* 🎟️ Layout em grade para os ingressos */
.event-tickets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    column-gap: 20px;
    list-style: none;
    padding: 0 0 25px;
    margin: 0;
}

/* 🏷️ Estilo de cada ingresso */
.event-tickets li {
    background-color: #fff;
    text-align: left;
    padding: 5px;
    border: none;
    margin-bottom: 70px;
}

/* 📰 Título do ingresso */
.event-tickets li strong,
.event-tickets li strong a {
    display: inline-block;
    font-size: 24px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    margin-bottom: 2px;
}

.event-tickets li strong a:hover {
    color: #c61a5b;
}

/* 🔗 Link "Saiba mais" */
.event-tickets .saiba-mais-wrapper {
    min-height: 20px;
    margin-bottom: 6px;
}

.event-tickets a.saiba-mais-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    color: #c61a5b;
    text-decoration: none;
    margin-top: 2px;
    margin-bottom: 5px;
}

.event-tickets a.saiba-mais-link:hover {
    text-decoration: underline;
}

/* 📅 e 📍 Informações de data e local */
.event-tickets li p {
    font-size: 14px;
    font-weight: 400;
    color: #9c9c9c;
    margin: 0px 0;
}

/* 💰 Preço do ingresso */
.event-tickets .price {
    font-size: 14px;
    font-weight: 400;
    color: #009915;
    margin-top: 15px;
    display: inline-block;
    white-space: nowrap;
}

/* 💸 Taxa administrativa */
.event-tickets .admin-fee {
    display: inline-block;
    font-size: 11px;
    color: #9c9c9c;
    font-weight: 400;
    margin-top: 2px;
    white-space: nowrap;
}

/* 🛒 Botão "Adicionar ao carrinho" */
.event-tickets .add_to_cart_button {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    padding: 10px 20px;
    border: none;
    background-color: #c61a5b;
    color: #fff;
    border-radius: 2px;
    transition: all 0.25s ease-in-out;
    margin-top: 20px;
}

.event-tickets .add_to_cart_button:hover {
    background-color: #e21765;
    color: #fff;
}

/* 🎯 Botão de assentos (Tickera) */
.event-tickets button.tc_seating_map_button {
    margin-top: 20px;
}

/* 💵 Estilo do bloco de preço formatado */
.event-tickets .preco-formatado {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 400;
    color: #5BBD68;
    margin-top: 0px;
    min-height: 30px;
}

.event-tickets .icone-rs {
    background-color: #5BBD68;
    color: white;
    font-size: 13px;
    font-weight: 400;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.event-tickets .valor-total,
.event-tickets .taxa-adm {
    color: #5BBD68;
}

/* 🔻 Linha separadora entre local e preço */
.event-tickets .separador-ingresso {
    display: block !important;
    border: none;
    border-top: 1px solid #c61a5b;
    margin-top: 20px !important;
    margin-bottom: 15px !important;
    width: 80%;
}

.button.sold-out {
    margin-top: 20px;
}