/**
 * Simulador de economia UpSites - Frontend Styles
 */

.seus-calculator-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.seus-calculator-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 320px;
    max-width: 500px;
    font-family: 'Red Hat Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.seus-group-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 10px;
}

.seus-group-badge.group-b {
    background-color: #FFE4D6;
    color: #FF6B35;
}

.seus-group-badge.group-a {
    background-color: #E6E9F0;
    color: #4A5568;
}

.seus-group-description {
    color: #6B7280;
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.seus-section-title {
    font-size: 24px;
    font-weight: bold;
    color: #1F2937;
    margin-bottom: 15px;
}

.seus-section-description {
    color: #4B5563;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.seus-highlight {
    font-weight: bold;
    color: #1F2937;
}

.seus-slider-section {
    margin-bottom: 40px;
}

.seus-slider-label {
    font-size: 16px;
    color: #374151;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.seus-slider-value {
    font-size: 18px;
    font-weight: bold;
    color: #1F2937;
}

.seus-slider-container {
    position: relative;
    margin-bottom: 10px;
}

.seus-slider {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    border-radius: 3px;
    outline: none;
    position: relative;
    z-index: 2;
}

.seus-slider-background {
    position: absolute;
    width: 100%;
    height: 6px;
    background: #E5E7EB;
    border-radius: 3px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
}

.seus-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: #FF6B35;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.seus-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: #FF6B35;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.seus-slider-track {
    position: absolute;
    height: 6px;
    background: #FF6B35;
    border-radius: 3px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
}

.seus-slider-limits {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #9CA3AF;
}

.seus-savings-section {
    background: #F9FAFB;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}

.seus-savings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.seus-savings-title {
    font-size: 18px;
    font-weight: bold;
    color: #1F2937;
    margin: 0;
}

.seus-total-label {
    font-size: 16px;
    color: #6B7280;
    font-weight: 500;
}

.seus-savings-results {
    space-y: 15px;
}

.seus-savings-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #E5E7EB;
}

.seus-savings-item:last-child {
    border-bottom: none;
}

.seus-savings-label {
    font-size: 15px;
    color: #4B5563;
}

.seus-savings-value {
    font-size: 18px;
    font-weight: bold;
    color: #059669;
}

.seus-cta-button {
    width: 100%;
    padding: 16px 24px;
    background: #FF6B35;
    color: #000000;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    text-align: center;
}

.seus-cta-button:hover {
    background: #E85D2D;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    color: #000000;
    text-decoration: none;
}

.seus-cta-button svg {
    width: 16px;
    height: 16px;
    margin-right: 6px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .seus-calculator-wrapper {
        flex-direction: column;
    }
    
    .seus-calculator-card {
        max-width: 100%;
        padding: 30px 20px;
    }
    
    .seus-section-title {
        font-size: 20px;
    }
    
    .seus-section-description {
        font-size: 14px;
    }
    
    .seus-savings-section {
        padding: 20px;
    }
    
    .seus-savings-label {
        font-size: 14px;
    }
    
    .seus-savings-value {
        font-size: 16px;
    }
}

/* Elementor Editor Specific Styles */
.elementor-editor-active .seus-calculator-wrapper {
    min-height: 500px;
}