/** WOOCOMMERCE */
/* container quantidade + botão */
.single_add_to_cart_button,
.quantity input {
    font-size: 18px;
}

/* campo quantidade */
.quantity input.qty {
    width: 80px;
    height: 48px;
    border-radius: 8px;
    border: 2px solid #e5e5e5;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.2s ease;
}

/* hover quantidade */
.quantity input.qty:focus {
    border-color: #ff3b3b;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 59, 59, 0.15);
}

/* botão comprar ingresso */
.single_add_to_cart_button {
    background: #8CD63F !important;
    border: none;
    color: #000 !important;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 18px;
    transition: all 0.25s ease;
}

/* hover */
.single_add_to_cart_button:hover {
    background: #7ED321 !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* alinhamento bonito */
.cart {
    display: flex;
    gap: 12px;
    align-items: center;
}

.woocommerce-Tabs-panel--description h2:first-child {
    display: none;
}

.wc-block-components-form .wc-block-components-text-input input:-webkit-autofill+label,
.wc-block-components-form .wc-block-components-text-input.is-active label,
.wc-block-components-text-input input:-webkit-autofill+label,
.wc-block-components-text-input.is-active label {
    top: 6px;
    color: #a9a9a9;
    transform: scale(.82);
}

/* mobile */
@media (max-width: 600px) {

    .cart {
        flex-direction: column;
        align-items: stretch;
    }

    .quantity input.qty {
        width: 100%;
    }

    .single_add_to_cart_button {
        width: 100%;
    }

}