/* =============================================
   ORÇAMENTO — Multi-Step Briefing Form
   ============================================= */

/* === Hero === */
.orc-hero {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    padding: 70px 0 50px;
    text-align: center;
    color: #fff;
}

.orc-tag {
    display: inline-block;
    background: rgba(37, 99, 235, 0.15);
    color: #60A5FA;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.orc-hero h1 {
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 14px;
    color: #fff;
}

.orc-hero p {
    font-size: 1rem;
    color: #94A3B8;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

/* === Form Section === */
.orc-form-section {
    background: #F8FAFC;
    padding: 50px 0 70px;
}

.orc-wrapper {
    max-width: 720px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #E2E8F0;
}

/* === Progress Bar === */
.orc-progress {
    height: 4px;
    background: #E2E8F0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.orc-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #2563EB, #60A5FA);
    border-radius: 4px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 20%;
}

.orc-step-indicator {
    font-size: 0.78rem;
    color: #94A3B8;
    text-align: right;
    margin-bottom: 30px;
    font-weight: 500;
}

/* === Steps === */
.orc-step {
    display: none;
}

.orc-step.active {
    display: block;
    animation: orcFadeIn 0.4s ease;
}

@keyframes orcFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.orc-step-header {
    margin-bottom: 30px;
}

.orc-step-number {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    color: #2563EB;
    background: #EFF6FF;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 10px;
}

.orc-step-header h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 6px;
}

.orc-step-header p {
    font-size: 0.9rem;
    color: #64748B;
}

/* === Service Cards (Step 1) === */
.orc-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.orc-service-card {
    cursor: pointer;
}

.orc-service-card input {
    display: none;
}

.orc-card-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    transition: all 0.25s ease;
    background: #FAFBFC;
}

.orc-card-inner i {
    font-size: 1.3rem;
    color: #94A3B8;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F1F5F9;
    border-radius: 10px;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.orc-card-inner span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
}

.orc-service-card:hover .orc-card-inner {
    border-color: #93C5FD;
    background: #EFF6FF;
}

.orc-service-card.selected .orc-card-inner,
.orc-service-card input:checked+.orc-card-inner {
    border-color: #2563EB;
    background: #EFF6FF;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.orc-service-card.selected .orc-card-inner i,
.orc-service-card input:checked+.orc-card-inner i {
    background: #2563EB;
    color: #fff;
}

/* === Form Fields === */
.orc-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.orc-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}

.orc-field input,
.orc-field select,
.orc-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    font-size: 0.92rem;
    font-family: 'Inter', sans-serif;
    color: #0F172A;
    background: #FAFBFC;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.orc-field input:focus,
.orc-field select:focus,
.orc-field textarea:focus {
    outline: none;
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background: #fff;
}

.orc-field input::placeholder,
.orc-field textarea::placeholder {
    color: #94A3B8;
}

.orc-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394A3B8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.orc-field textarea {
    resize: vertical;
    min-height: 100px;
}

.orc-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* === Checkbox Group === */
.orc-checkgroup {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.orc-check {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    color: #334155;
    transition: all 0.2s ease;
}

.orc-check:hover {
    border-color: #93C5FD;
    background: #EFF6FF;
}

.orc-check input {
    width: auto !important;
    accent-color: #2563EB;
}

/* === Navigation === */
.orc-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid #E2E8F0;
}

.orc-nav-right {
    display: flex;
    gap: 10px;
}

.orc-btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    background: transparent;
    color: #64748B;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.orc-btn-back:hover {
    border-color: #94A3B8;
    color: #334155;
}

.orc-btn-skip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: #94A3B8;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.orc-btn-skip:hover {
    color: #64748B;
    background: #F1F5F9;
}

.orc-btn-next {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: none;
    border-radius: 10px;
    background: #2563EB;
    color: #fff;
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: 'Inter', sans-serif;
}

.orc-btn-next:hover {
    background: #1D4ED8;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.orc-btn-send {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border: none;
    border-radius: 10px;
    background: #25D366;
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: 'Inter', sans-serif;
}

.orc-btn-send:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.35);
}

.orc-btn-send i {
    font-size: 1.2rem;
}

/* === Summary === */
.orc-summary {
    margin-top: 30px;
    padding: 24px;
    background: #F8FAFC;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
}

.orc-summary h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.orc-summary h3 i {
    color: #2563EB;
}

.orc-summary ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.orc-summary li {
    padding: 6px 0;
    font-size: 0.85rem;
    color: #334155;
    border-bottom: 1px solid #E2E8F0;
}

.orc-summary li:last-child {
    border: none;
}

.orc-summary li strong {
    color: #0F172A;
    margin-right: 4px;
}

/* === Trust Badges === */
.orc-trust {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.orc-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: #64748B;
    font-weight: 500;
}

.orc-trust-item i {
    color: #2563EB;
}

/* === Responsive === */
@media (max-width: 768px) {
    .orc-wrapper {
        padding: 24px 20px;
        margin: 0 -10px;
        border-radius: 12px;
    }

    .orc-hero h1 {
        font-size: 1.7rem;
    }

    .orc-services-grid {
        grid-template-columns: 1fr;
    }

    .orc-field-row {
        grid-template-columns: 1fr;
    }

    .orc-checkgroup {
        grid-template-columns: 1fr;
    }

    .orc-nav {
        flex-direction: column;
        gap: 12px;
    }

    .orc-nav-right {
        width: 100%;
        justify-content: space-between;
    }

    .orc-btn-back {
        width: 100%;
        justify-content: center;
    }

    .orc-btn-send {
        width: 100%;
        justify-content: center;
    }

    .orc-trust {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .orc-hero {
        padding: 50px 0 35px;
    }

    .orc-hero h1 {
        font-size: 1.4rem;
    }

    .orc-step-header h2 {
        font-size: 1.2rem;
    }

    .orc-card-inner {
        padding: 14px 16px;
    }

    .orc-card-inner span {
        font-size: 0.82rem;
    }
}