﻿/* ============================================
   FIXSI WIDGET - FLUJO CON BREADCRUMB
   ============================================ */

.fixsi-widget {
    max-width: 480px;
    margin: 60px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

#fixsi-repair-form {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.98) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.fixsi-widget h3:first-child {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.fixsi-widget-subtitle {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin: 0 0 32px 0;
}

.fixsi-breadcrumb {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    min-height: 80px;
}

.fixsi-breadcrumb-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
}

.fixsi-breadcrumb-item:last-child {
    margin-bottom: 0;
}

.fixsi-breadcrumb-number {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #0073aa;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    margin-right: 12px;
    flex-shrink: 0;
}

.fixsi-breadcrumb-item.inactive .fixsi-breadcrumb-number {
    background: #dee2e6;
    color: #6c757d;
}

.fixsi-breadcrumb-label {
    font-weight: 600;
    color: #1a1a1a;
    margin-right: 8px;
}

.fixsi-breadcrumb-value {
    color: #0073aa;
    font-weight: 500;
}

.fixsi-breadcrumb-item.inactive .fixsi-breadcrumb-label,
.fixsi-breadcrumb-item.inactive .fixsi-breadcrumb-value {
    color: #adb5bd;
}

.fixsi-current-selection {
    margin-bottom: 0;
    min-height: 90px;
}

.fixsi-current-selection h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 12px 0;
}

.fixsi-widget select {
    width: 100%;
    padding: 14px 40px 14px 16px;
    font-size: 15px;
    line-height: 1.4;
    color: #1a1a1a;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    appearance: none;
    transition: all 0.2s ease;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%236c757d' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.fixsi-widget select:hover {
    border-color: #0073aa;
    background-color: #fafbfc;
}

.fixsi-widget select:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
    background-color: white;
}

#fixsi-go-button {
    display: none;
    width: 100%;
    padding: 16px 48px;
    font-size: 17px;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #0073aa 0%, #005a87 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 115, 170, 0.3);
}

#fixsi-go-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 115, 170, 0.4);
    background: linear-gradient(135deg, #005a87 0%, #004666 100%);
}

@media (max-width: 640px) {
    .fixsi-widget {
        margin: 30px 16px;
    }
    
    #fixsi-repair-form {
        padding: 32px 24px;
    }
    
    .fixsi-widget h3:first-child {
        font-size: 22px;
    }
}