* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Open Sans", sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: 100vh;
    position: relative;
    background-image: url(assets/img/pattern-14.png);
}

.back-button {
    position: relative;
    top: 20px;
    left: 20px;
}

.circle-button {
    width: 35px;
    height: 35px;
    background-color: #213A6E;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    border-radius: 50%;
    cursor: pointer;
}

.back-arrow {
    width: 20px;
    height: 20px;
}

.ticket-container {
    width: 90%;
    max-width: 400px;
    margin: auto;
    padding: 20px;
    border-radius: 8px;
}

.match-title {
    text-align: center;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 20px;
}

.section-title {
    text-align: center;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
}

.ticket-selection {
    background-color: #213A6E;
    color: #fff;
    border-radius: 8px;
    padding: 30px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.ticket-selection .label {
    font-family: "Muli", sans-serif;
    font-size: 20px;
    font-weight: bold;
}

.ticket-selection .price {
    font-family: "Muli", sans-serif;
    font-size: 24px;
    font-weight: bold;
}

.quantity-section {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.quantity-selector {
    display: flex;
    align-items: center;
}

.quantity-button {
    width: 40px;
    height: 40px;
    border: 2px solid #9DBE42;
    color: #9DBE42;
    border-radius: 50%;
    background-color: transparent;
    font-size: 38px;
    font-weight: normal;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quantity {
    font-size: 31px;
    color: #9DBE42;
    font-weight: normal;
    margin: 0 10px;
}

.divider {
    border: none;
    height: 1px;
    background-color: #D0E69298;
    margin: 18px 0;
}

.divider-custom {
    border: none;
    height: 1px;
    background-color: #213A6E;
    margin: 18px 0;
}

.promo-section {
    background-color: #F2F2F2;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 50px;
}


.promo-section label {
    display: block;
    margin-bottom: 18px;
    font-size: 16px;
    color: #213A6E;
}

.promo-input {
    display: flex;
    gap: 30px;
}

.promo-input input {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
    border: none;
}

.add-button {
    background-color: #9DBE42;
    color: #fff;
    border: none;
    border-radius: 17px;
    width: 35px;
    height: 35px;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 26px;
}

.summary {
    font-family: "Muli", sans-serif;
    background-color: #D0E692;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 16px;
}

.summary-item.total {
    font-weight: bold;
}

.summary-value {
    color: #213A6E;
    font-weight: 900;
}

.payment-button {
    font-family: "Muli", sans-serif;
    background-color: #A6C429;
    color: #FFFFFF;
    border: none;
    border-radius: 25px;
    padding: 12px;
    font-size: 20px;
    font-weight: 900;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.payment-button:hover {
    background-color: #A6C429;
}
