/* ===== PAGE BACKGROUND ===== */
body.elementor-template-canvas {
    background: #09090A !important;
}

/* ===== WRAP ===== */
.vbk-wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px;
    font-family: Lato, sans-serif;
    position: relative;
    min-height: 80vh;
}

/* ===== STEPS ===== */
.vbk-step { display: none; }
.vbk-step.active { display: block; animation: vbkIn .5s ease; }
@keyframes vbkIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== STEP HEADER ===== */
.vbk-step-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}
.vbk-step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(179,116,53,.15);
    color: #B37435;
    font-family: Playfair Display, serif;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.vbk-step-header h3 {
    font-family: Playfair Display, serif;
    font-size: 22px;
    color: #E8E3DE;
    margin: 0 0 2px;
}
.vbk-step-header p {
    font-size: 13px;
    color: rgba(232,227,222,.5);
    margin: 0;
}

/* ===== TITLE ===== */
.vbk-title {
    font-family: Playfair Display, serif;
    font-size: 28px;
    text-align: center;
    color: #E8E3DE;
    text-transform: uppercase;
    letter-spacing: .15em;
    margin: 0 0 8px;
}
.vbk-sub {
    text-align: center;
    font-size: 14px;
    color: rgba(232,227,222,.5);
    margin: 0 0 32px;
}

/* ===== TURMAS LIST ===== */
.vbk-turmas { display: flex; flex-direction: column; gap: 12px; }
.vbk-turma {
    padding: 20px;
    border: 1px solid rgba(232,227,222,.1);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all .3s;
}
.vbk-turma:hover {
    border-color: rgba(179,116,53,.5);
    background: rgba(179,116,53,.05);
}
.vbk-turma h4 {
    font-family: Playfair Display, serif;
    font-size: 17px;
    color: #E8E3DE;
    margin: 0 0 4px;
}
.vbk-turma .date { font-size: 14px; color: rgba(232,227,222,.6); display: block; }
.vbk-turma .local { font-size: 12px; color: rgba(232,227,222,.4); display: block; margin-top: 2px; }
.vbk-turma .meta { text-align: right; }
.vbk-turma .price { font-size: 18px; font-weight: 600; color: #E8E3DE; }
.vbk-turma .vagas { font-size: 12px; color: #B37435; }

/* ===== CRONOGRAMA TIMELINE ===== */
.vbk-crono-title {
    font-family: Playfair Display, serif;
    font-size: 15px;
    color: #B37435;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin: 0 0 18px;
}
.vbk-timeline {
    position: relative;
    padding-left: 24px;
    margin-bottom: 24px;
}
.vbk-tl-item {
    position: relative;
    padding-bottom: 20px;
    padding-left: 20px;
    border-left: 1px solid rgba(179,116,53,.25);
}
.vbk-tl-item.last {
    border-left-color: transparent;
    padding-bottom: 0;
}
.vbk-tl-dot {
    position: absolute;
    left: -6px;
    top: 2px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #B37435;
    box-shadow: 0 0 0 3px rgba(179,116,53,.2);
}
.vbk-tl-content {
    display: flex;
    align-items: baseline;
    gap: 12px;
}
.vbk-tl-time {
    font-size: 14px;
    font-weight: 700;
    color: #E8E3DE;
    white-space: nowrap;
    min-width: 46px;
}
.vbk-tl-desc {
    font-size: 14px;
    color: rgba(232,227,222,.6);
}
#vbk-cronograma {
    background: rgba(179,116,53,.05);
    border: 1px solid rgba(179,116,53,.12);
    padding: 20px 24px;
    margin-bottom: 20px;
}

/* ===== BACK BUTTON ===== */
.vbk-back {
    background: none; border: none;
    color: rgba(232,227,222,.5);
    font-size: 14px; cursor: pointer;
    margin-bottom: 16px; padding: 0;
    transition: color .3s;
}
.vbk-back:hover { color: #B37435; }

/* ===== SELECTED TURMA ===== */
.vbk-selected {
    background: rgba(179,116,53,.08);
    border-left: 3px solid #B37435;
    padding: 14px 18px;
    margin-bottom: 20px;
}
.vbk-selected p { margin: 0; font-size: 14px; color: rgba(232,227,222,.7); }
.vbk-selected strong { color: #E8E3DE; }

/* ===== FORM ===== */
.vbk-form { display: flex; flex-direction: column; gap: 18px; }
.vbk-field label {
    display: block; font-size: 12px; font-weight: 600;
    color: rgba(232,227,222,.6);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 5px;
}
.vbk-field input, .vbk-field textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid rgba(232,227,222,.15);
    background: rgba(232,227,222,.03);
    color: #E8E3DE;
    font-family: Lato, sans-serif;
    font-size: 15px;
    transition: border-color .3s;
    box-sizing: border-box;
}
.vbk-field input:focus, .vbk-field textarea:focus {
    border-color: #B37435;
    outline: none;
    background: rgba(179,116,53,.03);
}
.vbk-field input::placeholder, .vbk-field textarea::placeholder {
    color: rgba(232,227,222,.25);
}

/* ===== BUTTONS ===== */
.vbk-btn {
    padding: 16px 36px;
    font-family: Playfair Display, serif;
    font-size: 13px;
    letter-spacing: .2em;
    text-transform: uppercase;
    border: 1px solid #B37435;
    background: #B37435;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(179,116,53,.39);
    transition: all .3s;
    align-self: center;
}
.vbk-btn:hover { background: #9A632D; transform: translateY(-2px); }
.vbk-btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }

/* ===== TERMOS BOX ===== */
.vbk-termos-box {
    max-height: 300px;
    overflow-y: auto;
    padding: 20px;
    border: 1px solid rgba(232,227,222,.1);
    background: rgba(232,227,222,.02);
    font-size: 13px;
    line-height: 1.8;
    color: rgba(232,227,222,.6);
    margin-bottom: 20px;
}
.vbk-termos-box::-webkit-scrollbar { width: 4px; }
.vbk-termos-box::-webkit-scrollbar-track { background: rgba(232,227,222,.05); }
.vbk-termos-box::-webkit-scrollbar-thumb { background: #B37435; border-radius: 2px; }

/* ===== CHECKBOX ACEITE ===== */
.vbk-check {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    margin-bottom: 24px;
    font-size: 14px;
    color: rgba(232,227,222,.7);
}
.vbk-check input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #B37435;
    cursor: pointer;
}
.vbk-check input:checked + span {
    color: #E8E3DE;
}

/* ===== SUCCESS ===== */
.vbk-ok { text-align: center; padding: 40px 0; }
.vbk-ok-icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: rgba(179,116,53,.15);
    color: #B37435;
    font-size: 28px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
}
.vbk-ok h3 {
    font-family: Playfair Display, serif;
    font-size: 24px;
    color: #E8E3DE;
    margin: 0 0 12px;
}
.vbk-ok-note { font-size: 13px; color: rgba(232,227,222,.4); margin: 16px 0; }
.vbk-btn-pay {
    display: inline-block; padding: 14px 32px;
    background: #B37435; color: #fff;
    text-decoration: none; font-size: 13px;
    letter-spacing: .15em; text-transform: uppercase;
    font-weight: 600; transition: all .3s; margin-bottom: 12px;
}
.vbk-btn-pay:hover { background: #9A632D; transform: translateY(-2px); }
.vbk-btn-wpp {
    display: inline-block; padding: 12px 28px;
    background: #25D366; color: #fff;
    text-decoration: none; font-size: 12px;
    letter-spacing: .1em; text-transform: uppercase;
    font-weight: 600; transition: all .3s;
}
.vbk-btn-wpp:hover { background: #1da851; }

/* ===== LOADING ===== */
.vbk-loading {
    position: absolute; top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(9,9,10,.8);
    display: flex; align-items: center; justify-content: center;
    z-index: 10;
}
.vbk-spin {
    width: 36px; height: 36px;
    border: 3px solid rgba(232,227,222,.1);
    border-top-color: #B37435;
    border-radius: 50%;
    animation: vbkSp .8s linear infinite;
}
@keyframes vbkSp { to { transform: rotate(360deg); } }

/* ===== ERROR ===== */
.vbk-error {
    background: rgba(163,51,51,.1);
    border: 1px solid rgba(163,51,51,.3);
    color: #ff6b6b;
    padding: 10px 14px;
    text-align: center;
    font-size: 13px;
    margin-bottom: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .vbk-wrap { padding: 40px 20px; }
    .vbk-turma .meta { min-width: 100px; }
    .vbk-title { font-size: 24px; }
}
@media (max-width: 640px) {
    .vbk-wrap { padding: 30px 16px; }
    .vbk-turma { flex-direction: column; text-align: center; gap: 10px; }
    .vbk-turma .meta { text-align: center; }
    .vbk-step-header { flex-direction: column; text-align: center; }
    .vbk-title { font-size: 22px; }
    .vbk-termos-box { max-height: 200px; padding: 14px; }
    .vbk-btn { padding: 14px 24px; font-size: 12px; }
}
