/** 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: #8CD63F !important;
    font-weight: 600;
    text-transform: uppercase;
    transform: scale(.6);
}

.wc-block-components-checkout-step__title {
    display: none;
}

.wc-block-components-form .wc-block-components-text-input input[type=email],
.wc-block-components-form .wc-block-components-text-input input[type=number],
.wc-block-components-form .wc-block-components-text-input input[type=password],
.wc-block-components-form .wc-block-components-text-input input[type=tel],
.wc-block-components-form .wc-block-components-text-input input[type=text],
.wc-block-components-form .wc-block-components-text-input input[type=url],
.wc-block-components-text-input input[type=email],
.wc-block-components-text-input input[type=number],
.wc-block-components-text-input input[type=password],
.wc-block-components-text-input input[type=tel],
.wc-block-components-text-input input[type=text],
.wc-block-components-text-input input[type=url] {
    background-color: #1b1b1b !important;
    color: #ffffff !important;
    border: 1px solid #777777 !important;
}

.wc-blocks-components-select .wc-blocks-components-select__container {
    background: #1b1b1b;
}

.wc-blocks-components-select .wc-blocks-components-select__label {
    color: #8CD63F !important;
}

.wc-blocks-components-select .wc-blocks-components-select__select {
    border: 1px solid #777777 !important;
    color: #fff !important;
}

.header-cartlink {
    display: none;
}

header.header-interna .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

header.header-interna .header-cartlink {
    display: block;
}

/* mobile */
@media (max-width: 600px) {

    .cart {
        flex-direction: column;
        align-items: stretch;
    }

    .quantity input.qty {
        width: 100%;
    }

    .single_add_to_cart_button {
        width: 100%;
    }

}