.checkout-page {
    margin-top: 30px;
}

.checkout-title {
    font-size: 26px;
    margin-bottom: 24px;
}

/* LAYOUT */
.checkout-layout {
    display: flex;
    gap: 32px;
}

/* FORM */
.checkout-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.checkout-box {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
}

.checkout-box-title {
    font-size: 18px;
    margin-bottom: 16px;
}

/* INPUTS */
.checkout-row {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.checkout-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
}

/* RADIO */
.checkout-radio {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 10px;
    gap: 8px;
}

/* CARTÃO */
.checkout-card {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* RESUMO */
.checkout-summary {
    width: 320px;
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    height: fit-content;
}

.checkout-summary-title {
    font-size: 20px;
    margin-bottom: 16px;
}

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

.checkout-summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: bold;
    margin-top: 16px;
}

.checkout-finish-btn {
    width: 100%;
    margin-top: 20px;
    padding: 14px;
    background: #3483FA;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.checkout-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
}

.stripe-input {
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #fff;
}

.stripe-input.StripeElement--focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99,102,241,.15);
}

.stripe-input.StripeElement--invalid {
    border-color: #ef4444;
}

.checkout-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px;
}

.error-text {
    color: #ef4444;
    margin-top: 8px;
    font-size: 14px;
}

.background_pix{
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,0.7);
}

.modal_pix{
    
    max-width: 800px;
    width: 90%;
    padding: 20px;
    background-color: #fff;
}

.pix-container{
    margin: 20px 0;
    border: 1px solid #000;
    display: flex;
    align-items: center;
    padding: 8px;
}

.pix-container i{
    font-size: 25px;
    cursor: pointer;
}

.pix-container input{
    width: 100%;
    padding: 8px;
    font-size: 18px;
    border: 0;
}

.pix-container input:focus{
    outline: none;
}

.pix-container button{
    width: 100%;
    margin-top: 10px;
}

