/* Hero Específico */
.budget-hero {
    height: 40vh; min-height: 350px; background-image: url('img/0.jpg');
    background-size: cover; background-position: center; display: flex; align-items: center;
}

/* Layout Split */
.budget-wrapper { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; align-items: start; }
.form-header { margin-bottom: 30px; border-bottom: 1px solid #eee; padding-bottom: 20px; }
.form-header h3 { font-size: 1.8rem; margin-bottom: 5px; color: #000; }
.form-header p { color: #666; }

/* Formulário */
.form-section-title {
    font-size: 0.95rem; color: var(--primary-yellow); text-transform: uppercase;
    letter-spacing: 1px; font-weight: 700; margin-bottom: 15px; display: block;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 600; color: #444; margin-bottom: 8px; }

/* Cards de Seleção */
.service-selection { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 15px; }
.radio-card { cursor: pointer; position: relative; }
.radio-card input { position: absolute; opacity: 0; }
.card-content {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    border: 1px solid #ddd; border-radius: 8px; padding: 15px; transition: all 0.3s; height: 100%;
}
.icon-svg { color: #555; margin-bottom: 8px; display: flex; }
.card-content .title { font-size: 0.9rem; font-weight: 600; text-align: center; color: #555; }

/* Estado Selecionado */
.radio-card input:checked + .card-content {
    border-color: var(--primary-yellow); background-color: #fff9e6; box-shadow: 0 0 0 1px var(--primary-yellow);
}
.radio-card input:checked + .card-content .icon-svg,
.radio-card input:checked + .card-content .title { color: #000; }

.form-note { font-size: 0.8rem; color: #888; text-align: center; margin-top: 10px; }

/* Sidebar Processo */
.process-sidebar-title { font-size: 1.2rem; color: #fff; margin-bottom: 10px; }
.process-sidebar-desc { color: #aaa; font-size: 0.9rem; margin-bottom: 30px; border-bottom: 1px solid #333; padding-bottom: 20px; }
.process-card { background-color: #1a1d24; padding: 30px; border-radius: 8px; color: #fff; border: 1px solid #333; }
.process-list { position: relative; }
.p-item { display: flex; gap: 15px; opacity: 0.5; transition: opacity 0.3s; }
.p-item.current, .p-item.highlight-item { opacity: 1; }
.p-item.current .p-num { background-color: var(--primary-yellow); color: #000; border-color: var(--primary-yellow); }
.p-item.highlight-item .p-num { background-color: #fff; color: #000; }
.p-num {
    width: 30px; height: 30px; border: 1px solid #555; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 0.8rem;
    font-weight: 700; flex-shrink: 0; background-color: #252830;
}
.p-content strong { display: block; font-size: 0.95rem; margin-bottom: 4px; color: #fff; }
.p-content p { font-size: 0.85rem; color: #aaa; line-height: 1.4; }
.p-line { width: 1px; height: 30px; background-color: #333; margin-left: 15px; margin-top: 5px; margin-bottom: 5px; }

/* Nota do Estúdio */
.studio-note-box {
    background-color: #f8f9fa; border: 1px solid #e9ecef; border-left: 4px solid #333;
    border-radius: 6px; padding: 25px; margin-top: 25px; position: sticky;
}
.note-header { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; }
.note-header h4 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; color: #333; font-weight: 700; margin: 0; }
.pulse-dot {
    width: 8px; height: 8px; background-color: #28a745; border-radius: 50%; display: inline-block;
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7); animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(40, 167, 69, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
}
.note-desc { font-size: 0.9rem; color: #555; line-height: 1.5; margin-bottom: 20px; border-bottom: 1px solid #eee; padding-bottom: 15px; }
.d-item { display: flex; gap: 12px; margin-bottom: 15px; }
.d-icon-svg { color: var(--primary-yellow); padding-top: 2px; }
.d-text { display: flex; flex-direction: column; }
.d-text strong { font-size: 0.9rem; color: #000; }
.d-text span { font-size: 0.85rem; color: #666; }

@media (max-width: 900px) {
    .budget-wrapper { grid-template-columns: 1fr; }
    .process-card { order: -1; margin-bottom: 40px; }
    .sticky-card { position: static; }
}
@media (max-width: 600px) {
    .form-row, .service-selection { grid-template-columns: 1fr; }
}